localhost/user/user123
,localhost/user?user=user123
和localhost/?user=user123
有什么区别?
如何从servlet中的URL user123
获取参数localhost/user/user123
?
提前致谢
最佳答案
您可以从HttpServletRequest对象的getPathInfo()进行解析。
样例代码
String urlPath = request.getPathInfo();
System.out.println("" + urlPath.substring(urlPath.lastIndexOf("/"), urlPath.length()- 1));