简体   繁体   中英

referencing data files in jars

My Java program references a lot of data files. I put them in a top level directory called data/, along with src/ and bin/. In Eclipse, references to data/ and ../data/ both seem to work. When I run it from the command line, only ../data/ works.

When I put the bin/ and data/ directories in a jar and correctly set the entry point, it doesn't seem to know that I want it to access the data/ directory inside the jar. The only way I've been able to get it to work is by setting the references to ../data/ and placing the jar in the bin directory. This obviously doesn't do me any good, because it's not self-contained.

What do I need to do to the references to make them work?

Thanks

I'd recommend you access the files in a classpath-relative way, whether in Eclipse or in a compiled JAR.

There are a few ways you might go about it, but a basic JDK-only approach would be to use Class's getResourceAsStream() method, giving you access to an InputStream object that you can read in.

If your resources are in a jar file, consider using this method to read them:

class Class {
    InputStream getResourceAsStream(String name)
}

This looks for the resource relative to a class (which may be in a jar), rather than relative to the working directory.

Thanks for pointing me down this path, guys. I ended up doing a really hacked up workaround because I'm not very good with IO yet. I used getClass() to construct a URL:

http://forums.sun.com/thread.jspa?threadID=5258488

Then made a new File object from this string (new File(file)):

String file = url.toString().replaceFirst("file:", "");

This allowed me to keep the same code that referenced the file objects.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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