在将字符串发送到servlet时从JSTL中转义&符号

时间:2015-02-23 12:18:24

标签: servlets jstl

实际上我正在尝试将字符串从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") ;

但它正在截断&符号的数据原因。请帮帮我

0 个答案:

没有答案