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.
在我的 servlet 中,我想按日期标记对数据库中的查询进行排序。我希望用户能够点击 jsp 页面中的日期戳,
<td><a href="/edit"><c:out value= "${log.properties.date}" /></td>
它将它们引导到/retrieveservlet。有没有办法让 servlet 存储"${log.properties.date}"日期戳?谢谢。
/retrieve
"${log.properties.date}"
将您的锚点更改为
<a href="/edit?timestamp=<c:out value="${log.properties.date}" />"> ... </a>
现在时间戳将作为字符串请求参数提供。从您的 servlet:
String strTimestamp = request.getParameter("timestamp");
相应地解析它。