日期:2014-05-20 浏览次数:20676 次
import java.io.File; public class Test{ public static void main(String[] args) throws Exception { File f = new File("d:/io"); f.mkdirs(); f = new File("d:/io/test.txt"); f.createNewFile(); } }