| Author |
Get path of file in java class in web application
|
rajnish chattha
Greenhorn
Joined: Dec 01, 2011
Posts: 3
|
|
HI am quite new to java programming and till now I am doing XSLT transformation on static location files
File xmlFile = new File("D://Dashboard.xml");
File xsltFile = new File("D://Dashboard.xslt");
But ,now i have kept these 2 files into path
WebContent/XML/Dashboard.xml
WebContent/XSLTL/Dashboard.xml
When i run my project it says file cannot found.
Kindly tell how do I get the actual path of these files so that at run time it picks the file from root directory and perform some operations.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Check out ServletContext and its getRealPath method. That takes a path relative to the web application's root folder, and turns it into an absolute path.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
And welcome to the Ranch
|
 |
 |
|
|
subject: Get path of file in java class in web application
|
|
|