导读 大家好,我是小曜,我来为大家解答以上问题。file,pathfileexists很多人还不知道,现在让我们一起来看看吧!1、public static boolean ...
大家好,我是小曜,我来为大家解答以上问题。file,pathfileexists很多人还不知道,现在让我们一起来看看吧!
1、public static boolean createFile(String path) {
2、 if(path == null || path.trim().equals(""))
3、 return false;
4、 File file = new File(path);
5、 if(file.exists) {
6、 return file.isDirectory() ? false : true;
7、 } else {
8、 try {
9、 return file.createNewFile();
10、 } catch(IOException ex) {
11、 System.out.println(ex.getMessage);
12、 return false;
13、 }
14、 }
15、}
本文到此讲解完毕了,希望对大家有帮助。