I need to get real path for file in my WebContent directory, so that framework that I use can access that file. It only takes String file as attribute, so I need to get the real path to this file in WebContent directory.

I use Spring Framework, so solution should be possible to make in Spring.

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

If you need this in a servlet then use getServletContext().getRealPath("/filepathInContext")!

link|improve this answer
thanx for answer, but I user Spring, so I need it in @Controller – newbie May 7 '10 at 6:02
1  
Have the controller implement ServlexContextAware – OrangeDog Dec 7 '10 at 23:35
feedback

In situations like these I tend to extract the content I need as a resource (MyClass.getClass().getResourceAsStream()), write it as a file to a temporary location and use this file for the other call.

This way I don't have to bother with content that is only contained in jars or is located somewhere depending on the web container I'm currently using.

link|improve this answer
@tangens - I don't think he wants to read a resource from the webapps classloader; e.g. a file in a JAR in a WAR. He just wants to get the pathname of a file within the web container. – Stephen C May 7 '10 at 6:05
feedback

Include the request as a parameter. Spring will then pass the request object when it calls the mapped method

@RequestMapping .....
public String myMethod(HttpServletRequest request) {
   String realPath = request.getRealPath("/somefile.txt");
   ...
link|improve this answer
feedback

You could use the Spring Resource interface (and especially the ServletContextResource): http://static.springsource.org/spring/docs/current/javadoc-api/org/springframework/core/io/Resource.html

link|improve this answer
feedback

This approach uses the resource loader to get the absolute path to a file in your app, and then goes up a few folders to the app's root folder. No servlet context required! Change as required, but this should work if you have a "web.xml" in your WEB-INF folder. Note that you may want to consider using this solely for development, as this type of configuration is usually best stored externally from the app.

public String appPath()
{
    java.net.URL r = this.getClass().getClassLoader().getResource("web.xml");

    String filePath = r.getFile();

    String result = new File(new File(new File(filePath).getParent()).getParent()).getParent();

    return result;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.