我尝试使用servlet的相对路径访问WebContent / alerts文件夹中的html文件。但我无法使用其相对路径访问它,
使用相对路径从 Servlet 访问WebContent内的文件:
protected Element getSummary(String value) throws IOException
{
Element element=null;
Summary summary = Summary.valueOf(value);
switch(summary) {
case rtp_summary:
element=parseDIV(new File("../../WebContent/alerts/rtp_bcklg_mail.html"),"rtp_summary");
break;
case ffu_summary:
element=parseDIV(new File("/../../WebContent/alerts/ffu_comp_bcklg_mail.html"),"ffu_summary");
break;
default:
System.out.println("Enter a valid choice");
break;
}
return element;
}
使用相对路径从 Java线程访问WebContent中的文件:
public class WriteJSONFile implements Runnable{
WriteJSONFile(){
}
@Override
public void run()
{
try {
createJSONFile();
} catch (IOException e) {
e.printStackTrace();
}
}
@SuppressWarnings("unchecked")
private static void createJSONFile() throws IOException
{
String path="C:/Users/Thiru/Documents/Website Design/Macaw/";
JSONArray jsonArray=new JSONArray();
JSONObject rtpStatus=new JSONObject();
rtpStatus.put("name","RTP");
rtpStatus.put("status",parseDIV(new File(path+"WebContent/alerts/rtp_bcklg_mail.html"),"rtp_health"));
jsonArray.add(rtpStatus);
JSONObject proposalattribStatus=new JSONObject();
proposalattribStatus.put("name","PROPOSAL ATTRIBUTE");
proposalattribStatus.put("status",parseDIV(new File(path+"WebContent/alerts/prpsl_txtsrch.html"),"prpsl_attrb_health"));
jsonArray.add(proposalattribStatus);
writetoFile(jsonArray);
}
private static void writetoFile(JSONArray jsonArray) {
try {
String path="C:/Users/Thiru/Documents/Website Design/Macaw/";
FileWriter file = new FileWriter(path+"WebContent/properties/status.json");
file.write(jsonArray.toJSONString());
file.flush();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
protected static String parseDIV(File input, String divElement)
throws IOException {
Document doc = Jsoup.parse(input, "UTF-8");
String content = doc.getElementById(divElement).val();
System.out.println(divElement +" "+content);
return content;
}
}
我还想使用相对路径从 RESTful web servic e方法访问Webcontent中的文件。提前谢谢。
答案 0 :(得分:7)
使用ServletContext.getRealPath()在磁盘上找到该文件。请注意,这仅在部署期间“爆炸”webapp时才有效。
例如:
File f = new File(getServletContext().getRealPath("alerts/rtp_bcklg_mail.html"));
答案 1 :(得分:3)
您文件的当前位置可能会被视为安全问题。建议将此类文件放在WEB-INF
。
String filePath = getServletContext().getRealPath("/WEB-INF/alerts/rtp_bcklg_mail.html");
答案 2 :(得分:0)
Properties props=new Properties();
props.load(this.getServletContext().getResourceAsStream("/alerts/"+your_fileName+".html"));
通过调用ServletContext对象,我们可以从现在开始获取WebContext root,我们可以静态传递我们的文件
答案 3 :(得分:0)
您可以在html页面表单操作中使用servlet url模式,或者在html页面中使用href标签。但是你的web.xml使用servlet-mapping的url模式(/ projectname / servleturl)