JayceLi  

2012年4月13日

摘要: 1 //文件的各种操作类 2 import java.io.*; 3 4 class FileOperate 5 { 6 7 /** 8 * 新建目录 9 */ 10 public void newFolder(String folderPath) 11 { 12 try 13 { 14 String filePath = folderPath; 15 filePath = filePath.toString(); 16 ... 阅读全文
posted @ 2012-04-13 17:48 JayceLi 阅读(658) 评论(0) 推荐(0) 编辑