servlet的路径怎么写

1. eclipse里jsp中action中跳转servlet路径怎么写【servlet的路径怎么写】 web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--<?xml version="1.0" encoding="GB2312"?>-->
<web-app xmlns="");
response.setCharacterEncoding("utf-8");
if(proFile.exists()){
Properties ppp = new Properties();
ppp.load(new FileInputStream(proFile));
Enumeration eee= ppp.keys();
while(eee.hasMoreElements()){
String key = eee.nextElement().toString();
response.getOutputStream().println(key+"="+ppp.getProperty(key)+"<br/>");
}
}
else
response.getOutputStream().println("File "+proFile.getAbsolutePath()+" is not exists.</br/>");
}

servlet的路径怎么写

文章插图