使用Maven(使用Eclipse IDE)无法访问资源目录中的文件

使用Maven(使用Eclipse IDE)无法访问资源目录中的文件,第1张

使用Maven(使用Eclipse IDE)无法访问资源目录中的文件

在我看来,您的问题是

File testf = new File( "/test.txt" );

正在寻找一个

test.txt
位于计算机文件系统根目录的文件。您想要的是资源树的根,可以通过以下
getResource
方法获得:

File testf = new File( this.getClass().getResource( "/test.txt" ).toURI() );

或者,在静态上下文中,使用包含类的名称:

File testf = new File( MyClass.class.getResource( "/test.txt" ).toURI() );

当然,您需要在该示例中添加错误处理。



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存