开发者

Java file path in web project

开发者 https://www.devze.com 2023-03-24 19:44 出处:网络
I need to access the resource files in my web project from a class. The problem is that the paths of my development environment are different from the ones when the project is deployed.

I need to access the resource files in my web project from a class. The problem is that the paths of my development environment are different from the ones when the project is deployed.

For example, if I want to access some css files whi开发者_如何学编程le developing I can do like this:

File file = new File("src/main/webapp/resources/styles/some.css/");

But this may not work once it's deployed because there's no src or main directories in the target folder. How could I access the files consistently?


You seem to be storing your CSS file in the classpath for some unobvious reason. The folder name src is typical as default name of Eclipse's project source folder. And that it apparently magically works as being a relative path in the File constructor (bad, bad), only confirms that you're running this in the IDE context.

This is indeed not portable.

You should not be using File's constructor. If the resource is in the classpath, you need to get it as resource from the classpath.

InputStream input = getClass().getResourceAsStream("/main/webapp/resources/styles/some.css");
// ...

Assuming that the current class is running in the same context, this will work regardless of the runtime environment.

See also:

  • getResourceAsStream() vs FileInputStream

Update: ah, the functional requirement is now more clear.

Actually I want to get lastModified from the file. Is it possible with InputStream? –

Use getResource() instead to obtain it as an URL. Then you can open the connection on it and request for the lastModified.

URL url = getClass().getResource("/main/webapp/resources/styles/some.css");
long lastModified = url.openConnection().getLastModified();
// ...


If what you're looking to do is open a file that's within the browser-visible part of the application, I'd suggest using ServletContext.getRealPath(...)

Thus:

File f = new File(this.getServletContext().getRealPath("relative/path/to/your/file"));

Note: if you're not within a servlet, you may have to jump through some additional hoops to get the ServletContext, but it should always be available to you in a web environment. This solution also allows you to put the .css file where the user's browser can see it, whereas putting it under /WEB-INF/ would hide the file from the user.


Put your external resources in a sub-directory of your project's WEB-INF folder. E.g., put your css resources in WEB-INF/styles and you should be able to access them as:

new File("styles/some.css");

Unless you're not using a standard WAR for deployment, in which case, you should explain your setup.


Typically resource files are placed in your war along with your class files. Thus they will be on the classpath and can be looked up via

getClass.getResource("/resources/styles/some.css")

or by opening a File as @ig0774 mentioned.

If the resource is in a directory that is not deployed in the WAR (say you need to change it without redeploying), then you can use a VM arg to define the path to your resource.

-Dresource.dir=/src/main/webapp/resources

and do a lookup via that variable to load it.


In Java web project, the standard directory like:

{WEB-ROOT} / 
           /WEB-INF/
           /WEB-INF/lib/
           /WEB-INF/classes

So, if you can get the class files path in file system dynamic, you can get the resources file path.

you can get the path ( /WEB-INF/classes/ ) by:

this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath()

so, then the next ...

0

精彩评论

暂无评论...
验证码 换一张
取 消