2

プロジェクト内のリソースのローカル ファイル パスを取得する最良の方法は何ですか?

実行したいファイルdummy.exeを含むlibフォルダーがありますが、最初にその場所を知る必要があります(インストールディレクトリに基づいて、ユーザーごとに異なる場合があります。

4

4 に答える 4

1

これを試して

   URL loc = this.getClass().getResource("/file"); 
      String path = loc.getPath(); 
          System.out.println(path);
于 2013-07-11T11:02:29.023 に答える
1

まず、Oracle の「Finding Files」ドキュメントを参照してください。

再帰的なファイル マッチングをリストし、コード例を示します。

public class Find {

    public static class Finder
        extends SimpleFileVisitor<Path> {

        private final PathMatcher matcher;
        private int numMatches = 0;

        Finder(String pattern) {
            matcher = FileSystems.getDefault()
                    .getPathMatcher("glob:" + pattern);
        }

        // Compares the glob pattern against
        // the file or directory name.
        void find(Path file) {
            Path name = file.getFileName();
            if (name != null && matcher.matches(name)) {
                numMatches++;
                System.out.println(file);
            }
        }

        // Prints the total number of
        // matches to standard out.
        void done() {
            System.out.println("Matched: "
                + numMatches);
        }

        // Invoke the pattern matching
        // method on each file.
        @Override
        public FileVisitResult visitFile(Path file,
                BasicFileAttributes attrs) {
            find(file);
            return CONTINUE;
        }

        // Invoke the pattern matching
        // method on each directory.
        @Override
        public FileVisitResult preVisitDirectory(Path dir,
                BasicFileAttributes attrs) {
            find(dir);
            return CONTINUE;
        }

        @Override
        public FileVisitResult visitFileFailed(Path file,
                IOException exc) {
            System.err.println(exc);
            return CONTINUE;
        }
    }

    static void usage() {
        System.err.println("java Find <path>" +
            " -name \"<glob_pattern>\"");
        System.exit(-1);
    }

    public static void main(String[] args)
        throws IOException {

        if (args.length < 3 || !args[1].equals("-name"))
            usage();

        Path startingDir = Paths.get(args[0]);
        String pattern = args[2];

        Finder finder = new Finder(pattern);
        Files.walkFileTree(startingDir, finder);
        finder.done();
    }
}

頑張ってください!

于 2013-07-11T10:58:17.580 に答える
1

したがって、最初の答えは私にとって正しいと言いましたが、アプリケーションをデプロイした後、ディレクトリ構造がまったく一致しないため、間違っていました。次のコードは、jar ファイル内のリソースを検索し、そのローカル ファイルパスを返します。

    String filepath = "";

    URL url = Platform.getBundle(MyPLugin.PLUGIN_ID).getEntry("lib/dummy.exe");

    try {
        filepath = FileLocator.toFileURL(url).toString();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

    System.out.println(filepath);

文字列 filepath には、プラグイン内にあるリソースのローカル ファイルパスが含まれます。

于 2013-07-11T12:10:14.253 に答える