在我看来,您的问题是
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() );
当然,您需要在该示例中添加错误处理。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)