在项目中获取资源的本地文件路径的最佳方法是什么?
我有一个lib文件夹,其中包含我想要执行的文件dummy.exe但首先我需要知道它在哪里(根据安装目录,每个用户可能会有所不同。
答案 0 :(得分:5)
安装目录通常是启动java应用程序的目录,此路径可以从正在运行的Java应用程序中找到
System.getProperty("user.dir");
如果要获取相对于app dir的文件的绝对路径,可以使用File.absolutePath
String absolutePath = new File("lib/dummy.exe").getAbsolutePath();
答案 1 :(得分:1)
首先,您应该看一下Oracle "Finding Files" documentation。
列出递归文件匹配并提供示例代码:
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();
}
}
祝你好运!
答案 2 :(得分:1)
所以我说第一个答案对我来说是对的,但我错了,因为在部署我的应用程序后目录结构根本不匹配。以下代码在jar文件中找到一个ressource并返回其本地文件路径。
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);
字符串文件路径包含插件内的ressource的本地文件路径。
答案 3 :(得分:0)
试试这个
URL loc = this.getClass().getResource("/file");
String path = loc.getPath();
System.out.println(path);