随笔分类 -  JAVA工具类

摘要:import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.*; /**... 阅读全文
posted @ 2016-08-10 18:23 聊聊IT那些事 阅读(1475) 评论(0) 推荐(0)
摘要:Jrebel 可快速实现热部署,节省了大量重启时间,提高了个人开发效率。网上可搜索到破解版。 http://baike.baidu.com/link?url=wuzv7Wa7SMUKltJr-dytafp6aNOLT_acXjhU8CK0xh1cCnSTViS2y9jarHHEsivYbv_4H8G 阅读全文
posted @ 2016-04-05 19:52 聊聊IT那些事 阅读(155) 评论(0) 推荐(0)
摘要:http://www.cnblogs.com/peida/archive/2013/04/24/3036689.html 阅读全文
posted @ 2016-04-05 10:36 聊聊IT那些事 阅读(145) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2016-03-08 17:28 聊聊IT那些事 阅读(0) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2016-03-08 16:25 聊聊IT那些事 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2016-03-08 16:21 聊聊IT那些事 阅读(2) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2016-03-08 16:20 聊聊IT那些事
该文被密码保护。
posted @ 2016-01-19 16:38 聊聊IT那些事 阅读(3) 评论(0) 推荐(0)
摘要:1 package com.excel; 2 3 import java.io.FileOutputStream; 4 import java.io.IOException; 5 import java.io.OutputStream; 6 import java.util.HashSet; 7 import java.util.Map; 8 import java.util.Set; 9 import java.util.regex.Pattern; 10 11 import jxl.Workbook; 12 import jxl.write.Label; 13 im... 阅读全文
posted @ 2013-11-07 09:54 聊聊IT那些事 阅读(5106) 评论(0) 推荐(1)
摘要:View Code 1 public static void main(String[] args)throws Exception { 2 3 FileInputStream fi=new FileInputStream("e:/retire.png"); 4 BufferedInputStream in=new BufferedInputStream(fi); 5 FileOutputStream fo=new FileOutputStream("d:/ss.png"); 6 BufferedOu... 阅读全文
posted @ 2013-05-10 17:00 聊聊IT那些事 阅读(284) 评论(0) 推荐(0)
摘要:View Code 1 package com.copy; 2 3 import java.awt.BorderLayout; 4 import java.awt.Color; 5 import java.awt.Component; 6 import java.awt.event.ActionEvent; 7 import java.awt.event.ActionListener; 8 import java.util.Vector; 9 10 import javax.swing.DefaultCellEditor; 11 import javax.swing.J... 阅读全文
posted @ 2012-09-18 11:05 聊聊IT那些事 阅读(4025) 评论(0) 推荐(0)
摘要:View Code 1 package com.copy.util; 2 3 import java.awt.Color; 4 import java.awt.event.ActionEvent; 5 import java.awt.event.ActionListener; 6 import java.lang.reflect.InvocationTargetException; 7 import java.lang.reflect.Method; 8 9 import javax.swing.JButton;10 11 public class ButtonHandler exten... 阅读全文
posted @ 2012-09-12 12:32 聊聊IT那些事 阅读(371) 评论(0) 推荐(0)