带空格的文件名可以正常工作
这是我的代码
File f = new File("/Windows/F/Programming/Projects/NetBeans/TestApplications/database prop.properties"); System.out.println(f.exists()); try { FileInputStream stream = new FileInputStream(f); } catch (FileNotFoundException ex) { System.out.println(ex.getMessage()); }
f.exists()``true总是毫无问题地返回
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)