get current web application path in java
Join the DZone community and get the full member experience.
Join For FreeThis is a code snippet to retrieve the path of the current running web application project in java
public String getPath() throws UnsupportedEncodingException {
String path = this.getClass().getClassLoader().getResource("").getPath();
String fullPath = URLDecoder.decode(path, "UTF-8");
String pathArr[] = fullPath.split("/WEB-INF/classes/");
System.out.println(fullPath);
System.out.println(pathArr[0]);
fullPath = pathArr[0];
String reponsePath = "";
// to read a file from webcontent
reponsePath = new File(fullPath).getPath() + File.separatorChar + "newfile.txt";
return reponsePath;
}
Web application
Java (programming language)
Opinions expressed by DZone contributors are their own.
Comments