Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a file and store in Java web application folder

I would like to create an xml file and store in a folder within my spring Mvc web application.

I can get the root of my application with request.getContextPath()

but

how do i get the application's relative path so it will work on any machine indipendently by the location of the application's folder?

Like C:/folder/folder/MYAPPLICATIONROOTFOLDER

like image 501
GigaPr Avatar asked Feb 27 '23 21:02

GigaPr


1 Answers

You want to do this.

First, you need to get the ServletContext. I don't know how this is done in Spring MVC, but it's there somewhere.

Then you can do:

ServletContext ctx = getServletContextFromSpringSomehow();
String path = ctx.getRealPath("/folder/filename.txt");
FileWriter fw = new FileWriter(path);

The key here is ServletContext.getRealPath. It gives you the local file system path of a resource from within your webapp. Observer that you use "/" here, as it's a URL, not a file name. The container will give you a valid file name in return. Note, this only works if your container explodes your WAR, or you deploy an exploded WAR. If the WAR is NOT exploded, you will get a null back from the container.

Also note, this WILL work for non-existent files. The container does not check for the actual existence of the file. But it will be up to you to actually create any missing intermediate directories, etc.

Finally, of course, that even if you get a file path back, doesn't mean you can actually write to that path. That's a OS permission issue outside of the scope of the container.

like image 52
Will Hartung Avatar answered Mar 12 '23 05:03

Will Hartung