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.
可能重复: 如何使用 JSP 从 URL 获取参数
请帮忙!我想http://111.0000.0000.0000/2-abc-xyz?sessid=32323232-232322323使用 JSP 从 "" 中提取 sessid。
http://111.0000.0000.0000/2-abc-xyz?sessid=32323232-232322323
尝试
EL 表达式
${param.sessid}
或 Java 代码。
String value=request.getParameter("sessid");
或者
使用 java.net.URI,
URI uri=new URI("http://111.0000.0000.0000/2-abc-xyz?sessid=32323232-232322323"); System.out.println(uri.getQuery());