使用getResources时未找到FileSystem异常

问题描述 投票:0回答:1

我迷失了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);
            }               

但我不确定如何使用读者提供Paths.geturi。我想我可能不会理解一些基本的东西......

java resources
1个回答
0
投票

正如评论中指出的那样,在文件系统中找不到有问题的文件。

作为建议,尝试更换

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);
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.