java中如何创建带路径的文件
Posted a318013800
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中如何创建带路径的文件相关的知识,希望对你有一定的参考价值。
请教各位大侠了,java中如何创建带路径的文件,说明下 这个路径不存在
------回答---------
------其他回答(2分)---------
- Java code
-
File f = new File("c:/1.txt"); if(!f.exists()){ try { f.createNewFile(); } catch (IOException e) { e.printStackTrace(); } }
------其他回答(18分)---------
- Java code
-
File file = new File("c:\\123\\123.txt"); if(!file.getParentFile().exists()) file.getParentFile().mkdirs(); file.createNewFile();
------回答---------
------其他回答(2分)---------
- Java code
-
File f = new File("c:/1.txt"); if(!f.exists()){ try { f.createNewFile(); } catch (IOException e) { e.printStackTrace(); } }
------其他回答(18分)---------
- Java code
-
File file = new File("c:\\123\\123.txt"); if(!file.getParentFile().exists()) file.getParentFile().mkdirs(); file.createNewFile();http://biancheng.dnbcw.net/java/180676.htmlhttp://biancheng.dnbcw.net/java/
以上是关于java中如何创建带路径的文件的主要内容,如果未能解决你的问题,请参考以下文章