Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个@WebServlet("/myServ"). 如果输入,如何检索浏览器路径/myapp/myServ?param=123?我可以以某种方式获得类似字符串的“查询”吗?
@WebServlet("/myServ")
/myapp/myServ?param=123
除非我遗漏了什么,否则HttpServletRequest#getQueryString应该这样做。