繁体   English   中英

使用getResources时未找到FileSystem异常

[英]FileSystem not found exception when using getResources

我对getResources的概念非常迷失

我已经将一个简单的文本文件放在bin文件夹中,我希望将其作为资源进行访问,以便随后进行构建和部署。 但是,当我尝试运行jar文件时,出现文件未找到错误,我认为这取决于我如何访问资源。 谁能给我一些使用方法的指导。

public class Iterator {
    static ArrayList<String> myFiles = new ArrayList<String>();
    static URL filename= Iterator.class.getResource("/Files/FilesLogged.txt");
    static String folderName;
    static Path p;

    public Iterator() { }

    public static void main(String[] args) throws IOException, SAXException, TikaException, SQLException, ParseException, URISyntaxException, BackingStoreException {       

        Preferences userPrefs = Preferences.userNodeForPackage(TBB_SQLBuilder.class);

        p = Paths.get(filename.toURI());
        //This iterates through each of the files in the specified folder and copies them to a log. 
        //It also checks to see if that file has been read already so that it isn't re-inputted into the database if run again               
        //Loop through the ArrayList with the full path names of each folder in the outer loop
        for (String line : Files.readAllLines(p)){
            myFiles.add(line);
        }   
    }
}

我得到的错误

Exception in thread "main" java.nio.file.FileSystemNotFoundException
at com.sun.nio.zipfs.ZipFileSystemProvider.getFileSystem(ZipFileSystemProvider.java:171)
at com.sun.nio.zipfs.ZipFileSystemProvider.getPath(ZipFileSystemProvider.java:157)
at java.nio.file.Paths.get(Paths.java:143)
at Overview.Iterator.main(Iterator.java:46)

**使用@BorisTheSpiders回答进行编辑

public class Iterator {
    static ArrayList<String> myFiles = new ArrayList<String>();

    static URL filename= Iterator.class.getResource("/Files/FilesLogged.txt");
    static String folderName;
    static Path p;
    public Iterator() {
    }

    public static void main(String[] args) throws IOException, SAXException, TikaException, SQLException, ParseException, URISyntaxException, BackingStoreException {       

        Preferences userPrefs = Preferences.userNodeForPackage(TBB_SQLBuilder.class);
        InputStream in = filename.openStream( );
        BufferedReader reader = new BufferedReader( new InputStreamReader( in ) );
             p = Paths.get(filename.toURI());
            //This iterates through each of the files in the specified folder and copies them to a log. 
            //It also checks to see if that file has been read already so that it isn't re-inputted into the database if run again               
            //Loop through the ArrayList with the full path names of each folder in the outer loop
            for (String line : Files.readAllLines(p)){
                myFiles.add(line);
            }               

但是我不太确定如何使用阅读器为uri提供Paths.get 我想我可能不了解这里的基本知识...

如评论中所指出,在文件系统中找不到相关文件。

建议,尝试更换

static URL filename= Iterator.class.getResource("/Files/FilesLogged.txt");

static InputStream is = Iterator.class.getResourceAsStream("/Files/FilesLogged.txt");

以及使用以下命令读取文件的块:

try (Scanner scanner = new Scanner(is)) {
   while(scanner.hasNextLine()){
        String line = scanner.nextLine();
        myFiles.add(line);
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM