`
文章列表

Linux 端口操作

通过pid查看端口: netstat -antup |grep 2519 查看那个进程占用了xxx端口 lsof -i:xxx 查看进程号为xxx的进程在哪里 ps -ef|grep xxx Linux查询端口被占用的程序 netstat -tunlp | grep 9998 ps -ef | grep 8372 Oracle查询关键字 select * from user_source a where a.TEXT like '%t_config%';
引用 http://hi.baidu.com/tianhuimin/item/3f4178997aecff8959146176 "到底是谁占用了80端口,该怎么查,怎么终止它?",这里就简单讲解一下,在windows下如何查看80端口占用情况?是被哪个进程占用?如何终止等.          这里主要是用到windows下的DOS工具,点击"开始"--"运行",输入"cmd"后点击确定按钮,进入DOS窗口,接下来分别运行以下命令:          >netstat -aon | findstr " ...
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title ...
<script type="text/javascript"> $(function(){ $("#ajaxDemo").click(function() { $.get("admin/ajax.do?url=abc&id=" + Math.random(), function(data, status) { p = data; $("div[class=bar]").css("width", p + "%"); if ...
package com.u.util.arithmetic.sort; import java.util.Random; public class MySort { public MySort() { } //bobble sort public static void test(int[] arr, int length) { length = arr.length; int temp = 0; for(int i = 0; i < length; i++) { for(int j = 0; j ...
package com.u.image; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.geom.AffineTransform; import java.awt.image.BufferedImage; import java.awt.image.ColorModel; import java.awt.image.WritableRaster; import java.io.File; import javax.imageio.ImageIO; publi ...
// 在内存中创建图象 int width = 85, height = 20; BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); // 获取图形上下文 Graphics g = image.getGraphics(); // 生成随机类 Random random = new Random(); // 设定背景色 g.setColor(getRandColor(200, 250)); g.fillRect(0, ...
/* * Spring官网提供了共20个包,各个包的作用如下: org.springframework.aop-3.0.6.RELEASE Spring的面向切面编程,提供AOP(面向切面编程)实现 org.springframework.asm- 3.0.6.RELEASE Spring独立的asm程序,Spring2.5.6的时候需要asmJar 包3.0.6开始提供他自己独立的asmJar org.springframework.aspects- 3.0.6.RELEASE Spring提供对AspectJ框架的整合 org.springf ...
格式: [秒] [分] [小时] [日] [月] [周] [年] 序号 说明 是否必填 允许填写的值 允许的通配符 1 秒 是 0-59 , - * / 2 分 是 0-59 , - * / 3 时 是 0-23 , - * / 4 日 是 1-31 , - * ? / L W 5 月 是 1-12 or JAN-DEC , - * / 6 ...
http://blog.csdn.net/smcwwh/article/details/7095027 http://wang3065.iteye.com/blog/1718381

SWT

    博客分类:
  • java
package com.swt; import java.awt.BorderLayout; import java.awt.Color; import java.awt.FlowLayout; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; impo ...
JQuery 获得<span id="span"></span>中的值: $("#span").text(); JQuery 获得<div id="div"></div>中的值: $("#span").html(); JQuery 获得<input id="input" name="userName" value=""/>中的值: $("#input").val(); JQ ...

Spring MVC Example

Spring MVC Example Reference http://liuzidong.iteye.com/blog/897047
package com; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.apache.commons.codec.binary.Base64; public class R { public static void main(String[] args) throws Exception { Base64WithImage t = new Base64Wit ...
Linux 查看被占用的端口及杀进程 # su root # netstat -tunlp | grep 8888 # kill -9 进程号 ps -ef | grep java
Global site tag (gtag.js) - Google Analytics