我的项目根目录中有一个资源文件夹/包,我“不想”加载某个文件。如果我想加载某个文件,我会使用 class.getResourceAsStream 就可以了!!我真正想要做的是在资源文件夹中加载一个“文件夹”,在该文件夹内的文件上循环并获取每个文件的流并读入内容......假设文件名在运行时之前没有确定... 我该怎么办?有没有办法在你的 jar 文件中获取文件夹中的文件列表?请注意,包含资源的 Jar 文件与运行代码的 jar 文件相同...
12 回答
最后,我找到了解决方案:
final String path = "sample/folder";
final File jarFile = new File(getClass().getProtectionDomain().getCodeSource().getLocation().getPath());
if(jarFile.isFile()) { // Run with JAR file
final JarFile jar = new JarFile(jarFile);
final Enumeration<JarEntry> entries = jar.entries(); //gives ALL entries in jar
while(entries.hasMoreElements()) {
final String name = entries.nextElement().getName();
if (name.startsWith(path + "/")) { //filter according to the path
System.out.println(name);
}
}
jar.close();
} else { // Run with IDE
final URL url = Launcher.class.getResource("/" + path);
if (url != null) {
try {
final File apps = new File(url.toURI());
for (File app : apps.listFiles()) {
System.out.println(app);
}
} catch (URISyntaxException ex) {
// never happens
}
}
}
当您在 IDE 上运行应用程序(而不是 jar 文件)时,第二个块才起作用,如果您不喜欢,可以将其删除。
试试下面的。
制作资源路径"<PathRelativeToThisClassFile>/<ResourceDirectory>"
例如,如果您的类路径是 com.abc.package.MyClass 并且您的资源文件位于 src/com/abc/package/resources/ 中:
URL url = MyClass.class.getResource("resources/");
if (url == null) {
// error - missing folder
} else {
File dir = new File(url.toURI());
for (File nextFile : dir.listFiles()) {
// Do something with nextFile
}
}
你也可以使用
URL url = MyClass.class.getResource("/com/abc/package/resources/");
我知道这是很多年前的事了。但只是为了其他人遇到这个话题。您可以做的是使用getResourceAsStream()
带有目录路径的方法,输入 Stream 将具有该目录中的所有文件名。之后,您可以将 dir 路径与每个文件名连接起来,并在循环中为每个文件调用 getResourceAsStream。
当我试图从打包在 jar 中的资源中加载一些 hadoop 配置时,我遇到了同样的问题……在 IDE 和 jar(发行版)上。
我发现java.nio.file.DirectoryStream
最好在本地文件系统和 jar 上迭代目录内容。
String fooFolder = "/foo/folder";
....
ClassLoader classLoader = foofClass.class.getClassLoader();
try {
uri = classLoader.getResource(fooFolder).toURI();
} catch (URISyntaxException e) {
throw new FooException(e.getMessage());
} catch (NullPointerException e){
throw new FooException(e.getMessage());
}
if(uri == null){
throw new FooException("something is wrong directory or files missing");
}
/** i want to know if i am inside the jar or working on the IDE*/
if(uri.getScheme().contains("jar")){
/** jar case */
try{
URL jar = FooClass.class.getProtectionDomain().getCodeSource().getLocation();
//jar.toString() begins with file:
//i want to trim it out...
Path jarFile = Paths.get(jar.toString().substring("file:".length()));
FileSystem fs = FileSystems.newFileSystem(jarFile, null);
DirectoryStream<Path> directoryStream = Files.newDirectoryStream(fs.getPath(fooFolder));
for(Path p: directoryStream){
InputStream is = FooClass.class.getResourceAsStream(p.toString()) ;
performFooOverInputStream(is);
/** your logic here **/
}
}catch(IOException e) {
throw new FooException(e.getMessage());
}
}
else{
/** IDE case */
Path path = Paths.get(uri);
try {
DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path);
for(Path p : directoryStream){
InputStream is = new FileInputStream(p.toFile());
performFooOverInputStream(is);
}
} catch (IOException _e) {
throw new FooException(_e.getMessage());
}
}
以下代码将所需的“文件夹”作为 Path 返回,无论它是否在 jar 中。
private Path getFolderPath() throws URISyntaxException, IOException {
URI uri = getClass().getClassLoader().getResource("folder").toURI();
if ("jar".equals(uri.getScheme())) {
FileSystem fileSystem = FileSystems.newFileSystem(uri, Collections.emptyMap(), null);
return fileSystem.getPath("path/to/folder/inside/jar");
} else {
return Paths.get(uri);
}
}
需要java 7+。
另一种解决方案,您可以这样做ResourceLoader
:
import org.springframework.core.io.Resource;
import org.apache.commons.io.FileUtils;
@Autowire
private ResourceLoader resourceLoader;
...
Resource resource = resourceLoader.getResource("classpath:/path/to/you/dir");
File file = resource.getFile();
Iterator<File> fi = FileUtils.iterateFiles(file, null, true);
while(fi.hasNext()) {
load(fi.next())
}
正如其他答案所指出的那样,一旦资源位于 jar 文件中,事情就会变得非常难看。在我们的例子中,这个解决方案:
https://stackoverflow.com/a/13227570/516188
在测试中工作得很好(因为在运行测试时代码没有打包在 jar 文件中),但在应用程序实际正常运行时不起作用。所以我所做的是......我对应用程序中的文件列表进行了硬编码,但是我有一个测试从磁盘读取实际列表(可以这样做,因为它在测试中有效)并且如果实际列表不'与应用返回的列表不匹配。
这样我的应用程序中就有了简单的代码(没有技巧),而且我确信我没有忘记在列表中添加一个新条目,这要归功于测试。
下面的代码从自定义资源目录中获取 .yaml 文件。
ClassLoader classLoader = this.getClass().getClassLoader();
URI uri = classLoader.getResource(directoryPath).toURI();
if("jar".equalsIgnoreCase(uri.getScheme())){
Pattern pattern = Pattern.compile("^.+" +"/classes/" + directoryPath + "/.+.yaml$");
log.debug("pattern {} ", pattern.pattern());
ApplicationHome home = new ApplicationHome(SomeApplication.class);
JarFile file = new JarFile(home.getSource());
Enumeration<JarEntry> jarEntries = file.entries() ;
while(jarEntries.hasMoreElements()){
JarEntry entry = jarEntries.nextElement();
Matcher matcher = pattern.matcher(entry.getName());
if(matcher.find()){
InputStream in =
file.getInputStream(entry);
//work on the stream
}
}
}else{
//When Spring boot application executed through Non-Jar strategy like through IDE or as a War.
String path = uri.getPath();
File[] files = new File(path).listFiles();
for(File file: files){
if(file != null){
try {
InputStream is = new FileInputStream(file);
//work on stream
} catch (Exception e) {
log.error("Exception while parsing file yaml file {} : {} " , file.getAbsolutePath(), e.getMessage());
}
}else{
log.warn("File Object is null while parsing yaml file");
}
}
}
如果您使用的是 Spring,您可以使用org.springframework.core.io.support.PathMatchingResourcePatternResolver
和处理Resource
对象而不是文件。这在 Jar 文件的内部和外部运行时有效。
PathMatchingResourcePatternResolver r = new PathMatchingResourcePatternResolver();
Resource[] resources = r.getResources("/myfolder/*");
然后,您可以使用getInputStream
和来自的文件名访问数据getFilename
。
请注意,如果您尝试在getFile
Jar 中运行时使用,它仍然会失败。
在我的 jar 文件中,我有一个名为 Upload 的文件夹,该文件夹中还有其他三个文本文件,我需要在 jar 文件之外有一个完全相同的文件夹和文件,我使用了以下代码:
URL inputUrl = getClass().getResource("/upload/blabla1.txt");
File dest1 = new File("upload/blabla1.txt");
FileUtils.copyURLToFile(inputUrl, dest1);
URL inputUrl2 = getClass().getResource("/upload/blabla2.txt");
File dest2 = new File("upload/blabla2.txt");
FileUtils.copyURLToFile(inputUrl2, dest2);
URL inputUrl3 = getClass().getResource("/upload/blabla3.txt");
File dest3 = new File("upload/Bblabla3.txt");
FileUtils.copyURLToFile(inputUrl3, dest3);
简单...使用 OSGi。在 OSGi 中,您可以使用 findEntries 和 findPaths 遍历 Bundle 的条目。
这个链接告诉你怎么做。
神奇的是 getResourceAsStream() 方法:
InputStream is =
this.getClass().getClassLoader().getResourceAsStream("yourpackage/mypackage/myfile.xml")