摘要: /** * 创建一个新文件 */ @Test public void test1() { File f = new File("D:\\hello.txt"); try { f.createNewFile(); } catch (IOException e) { e.printStackTrace( 阅读全文