This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Servlets and the fly likes getting file path in the servlet... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "getting file path in the servlet..." Watch "getting file path in the servlet..." New topic
Author

getting file path in the servlet...

vasu devan
Ranch Hand

Joined: Apr 18, 2002
Posts: 37
Hi All,
I have a servlet which reads the information from a file 'myfile.txt'.
My requirement is that I should not hard code the file path in the servlet. If that is the case wher do I set the file path, so that when the servlet is invoked it gets the file path and does the reading process.
Is there also any specific directory where I should keep the above mentioned file.
Please throw some light on the above problem.
Thanks
Vasu
David O'Meara
Rancher

Joined: Mar 06, 2001
Posts: 13459

If you put the file in the web-inf/classes directory, you can use the local ClassLoader to find the file for you.
Try something like this in your servlet:

Then you should be able to open it with a FileInputStream or whatever you want...
Dave
vasu devan
Ranch Hand

Joined: Apr 18, 2002
Posts: 37
Hi David O'Meara,
As you suggested I tried keeping the myFile.txt in WEB-INF/classes dir. But stil my servlet is not in position to resolve the particular file.
Moreover as a project requirement, the file can be in any directory,in that case where do I mentioned the path, so that my servlet opens the file and read the content.
Can any one help me in resolving the above issue.
Thanks,
Vasu.
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12268
    
    1
I like to use an <init-param> in the web.xml file to designate a working directory for reading and writing data. Not as portable as using WEB-INF/ but more flexible.
Bill


Java Resources at www.wbrogden.com
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: getting file path in the servlet...
 
Similar Threads
removing jsp page address in url
File parser application
iText: Digital signature
How many Claspath set for running struts application?
problem in retriving the realpath from the servlet.