我的网络应用程序中的包含文件理解混乱
我在理解下面提到的代码片段时遇到问题。实际上它是 .inc 文件上的内容。我感到困惑的是路径变量中将存储什么。 它是当前工作目录的路径还是其他什么......
<%
String path = application.getRealPath(request.getServletPath());
path = path.substring(0, path.lastIndexOf(java.io.File.separator));
String dictionaryPath = path + java.io.File.separator + "dictionaries/english.txt";
String userdict = path + java.io.File.separator + "spellchecker/dictionaries/user/user-dictionary.txt";
int searchdepth = 50;
boolean striphtml = true;
String format = "javascript";
int suggestions = 14;
if (request.getParameter("jsvar") != null) {
if (!java.util.regex.Pattern.matches("^[a-zA-Z0-9_.\\[\\]]+$", request.getParameter("jsvar"))) {
out.println("Invalid Jsvar");
return;
}
}
%>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅文档,没有其他更好的替代品, context.getRealPath() 和 request.getServletPath() 。
顺便说一句,打印出来怎么样,
Refer to the docs, there is no other better substitute, context.getRealPath() and request.getServletPath().
BTW, how about printing that out,