The most intelligent Java IDE
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Servlets
 
RSS feed
 
New topic
Author

creating a file from WEB-INF

nikil shar
Ranch Hand

Joined: May 25, 2008
Messages: 76

hi all,
am writing a servlet which is meant to pass a file into another system. its a static file so i have put it inside my 'WEB-INF' directory but for some reason the code can not instantiate the file.



the code doesnt get inside the if statement since it fails at the if statement check to see if file exists. is there something wrong with my code ??

ta.
Mark E Hansen
Ranch Hand

Joined: Apr 01, 2009
Messages: 516

Have a look at ServletContext.getResourceAsStream("...").
Sony Agrawal
Ranch Hand

Joined: Oct 04, 2009
Messages: 80

Is it possible to access a file using such a path??
I mean a path where in "WEB-INf " is present ??
File f = new File("/WEB-INF/test.afp");
If that is the case then can't someone illegally access the class files if they know the server location and project name

William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Messages: 10259



Implies an absolute path starting with /WEB-INF - look into the ServletContext getRealPath() method.

Note that if you create a file under /WEB-INF the servlet container can NOT serve it directly, you will have to provide a servlet which can access that directory.

Bill

Java Resources at www.wbrogden.com
Mark E Hansen
Ranch Hand

Joined: Apr 01, 2009
Messages: 516

sony agrwal wrote:Is it possible to access a file using such a path??
I mean a path where in "WEB-INf " is present ??
File f = new File("/WEB-INF/test.afp");
If that is the case then can't someone illegally access the class files if they know the server location and project name



Your servlet can access content under /WEB-INF, the web container cannot.
Sony Agrawal
Ranch Hand

Joined: Oct 04, 2009
Messages: 80

Thanks for the reply people..

So as i understand the bottom line is,"The only way to access the contents of the WEB-INF directory is only through the servlet"
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Servlets
 
RSS feed
 
New topic
JProfiler
Get rid of your performance problems and memory leaks!

.