使用Java读取路径中带有空格的文件

使用Java读取路径中带有空格的文件,第1张

使用Java读取路径中带有空格的文件

带空格的文件名可以正常工作

这是我的代码

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
总是毫无问题地返回



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5130793.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存