------常用工具
小老贱
好好学习,天天向上
展开
-
字节流读取文件
public void readFileByBytes(String fileName) { File file = new File(fileName); InputStream in = null; try { System.out.println("以字节为单位读取文件内容,一次读一个字节:");原创 2016-11-03 16:12:44 · 524 阅读 · 0 评论 -
时间转换
DateFormat format2= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = format2.parse("2013-11-30 00:00:00.0"); SimpleDateFormat df=new SimpleDateFormat("y原创 2016-11-03 16:17:51 · 166 阅读 · 0 评论 -
递归获取目录下的所有文件
public List researchfile(File file,List list3) { String path = ""; if (file.isDirectory()) { File[] filearray = file.listFiles(); for (File f : filea原创 2016-11-03 16:25:11 · 206 阅读 · 0 评论 -
java实现多线程
public class MutliThreadDemo { public static void main(String [] args){ MutliThread m1=new MutliThread("Window 1"); MutliThread m2=new MutliThread("Window 2"); MutliThr转载 2016-11-03 16:28:07 · 191 阅读 · 0 评论