实际上我正在尝试将字符串从jstl发送到servlet,我正在使用的代码在下面,但它没有采用包含&符号的数据。我想在quid中获取数据。
<c:forEach var="billlist" items="${billlist}" >
<tr class="odd_gradeX">
<td><a href="BillReportController?action=podetails&quitId=<c:out value="${billlist.quitId}" />
</tr>
</c:forEach>
之后我正在使用
String quid = request.getParameter("quid") ;
但它正在截断&符号的数据原因。请帮帮我