摘要: package com.file;import java.io.*;/** * * @author joejoe * java文件类 */public class FileTest { public static void main(String[] args) throws IOException { File f1 = new File("./aa.js"); // 创建file对象 f1.createNewFile(); // 如果没有目录则可以直接创建文件 File dir = new File("./a"); dir.mkdir(); // 创 阅读全文
posted @ 2013-03-24 17:50 playerlife 阅读(920) 评论(0) 推荐(0) 编辑