How should I load files into my Java application?
|
|
The short answer Use one of these two methods: For example:
-- The long answer Typically, one would not want to load files using absolute paths. For example, don’t do this if you can help it:
This technique is not recommended for at least two reasons. First, it creates a dependency on a particular operating system, which prevents the application from easily moving to another operating system. One of Java’s main benefits is the ability to run the same bytecode on many different platforms. Using an absolute path like this makes the code much less portable. Second, depending on the relative location of the file, this technique might create an external dependency and limit the application’s mobility. If the file exists outside the application’s current directory, this creates an external dependency and one would have to be aware of the dependency in order to move the application to another machine (error prone). Instead, use the |
|||||||
|
|
getResource is fine, but using relative paths will work just as well too, as long as you can control where your working directory is (which you usually can). Furthermore the platform dependence regarding the separator character can be gotten around using File.separator, File.separatorChar, or System.getProperty("file.separator"). |
|||
|
|
|
What are you loading the files for - configuration or data (like an input file) or as a resource?
|
|||
|
|
|
I haven't had a problem just using unix-style path separators, even on Windows (though it is good practice to check File.separatorChar). The technique of using ClassLoader.getResource() is best for read-only resources that are going to be loaded from JAR files. Sometimes, you can programmatically determine the application directory, which is useful for admin-configurable files or server applications. (Of course, user-editable files should be stored somewhere in the System.getProperty("user.home") directory.) |
|||
|
|
|||
|
|