2018年9月5日

第一篇 多线程(一)

摘要: 1 package com.zzp.thread; 2 /** 3 * 4 * 创建线程:方式一 5 * 1、继承thread类,重写run方法 6 * 2、启动线程,调用start方法 7 * 8 * @author java 9 * 10 */ 11 public class StartThread extends Thread{ 12 //重写... 阅读全文

posted @ 2018-09-05 21:44 奋斗的小刀001 阅读(195) 评论(0) 推荐(0) 编辑

第十篇 IO流技术(十)

摘要: package com.zzp.commons; import java.io.File; import org.apache.commons.io.FileUtils; /** * * 大小 * @author java * */ public class CIOTest01 { public static void main(String[] args) { ... 阅读全文

posted @ 2018-09-05 00:18 奋斗的小刀001 阅读(174) 评论(0) 推荐(0) 编辑

导航