当前位置: 代码迷 >> Eclipse >> 为什么小弟我请求的url中会多了20%呢
  详细解决方案

为什么小弟我请求的url中会多了20%呢

热度:682   发布时间:2016-04-23 14:03:04.0
为什么我请求的url中会多了20%呢
<body>
  <%
  StudentDao studentDao=new StudentDao();
  List<Student> list=studentDao.selectAll();
  %>
   
  <h1 align="center">乐山师范学院学生信息</h1>
  <table border="1" align="center">
  <tr>
  <th>学号</th>
  <th>姓名</th>
  <th>性别</th>
  <th>年龄</th>
  <th>电话</th>
  <th>地址</th>
  <th>操作</th>
  </tr>
  <%
  for(Student stu:list){
  %>
  <tr>
  <td><%=stu.getId() %></td>
  <td><%=stu.getName() %></td>
  <td><%=stu.getSex() %></td>
  <td><%=stu.getAge() %></td>
  <td><%=stu.getPhone() %></td>
  <td><%=stu.getAddress() %></td>
  <td>
  <a href="deleteStudent.jsp?id=<%=stu.getId()%>">删除</a>
  <a href="doUpdateStudent.jsp ? id=<%=stu.getId()%>">修改</a>
  </td>
   
  </tr>
  <%
  }
  %>
  </table>
  </body>
 

------解决方案--------------------
<a href="deleteStudent.jsp?id=<%=stu.getId()%>">删除</a>
<a href="doUpdateStudent.jsp ? id=<%=stu.getId()%>">修改</a>
jsp后面和?之间有个空格,把空格去掉,?后面也有空格,也要去掉。
------解决方案--------------------
1. + URL 中+号表示空格 %2B
2. 空格 URL中的空格可以用+号或者编码 %20
3. / 分隔目录和子目录 %2F
4. ? 分隔实际的 URL 和参数 %3F
5. % 指定特殊字符 %25
6. # 表示书签 %23
7. & URL 中指定的参数间的分隔符 %26
8. = URL 中指定参数的值 %3D

------解决方案--------------------
中文的?出现了。
------解决方案--------------------
谁让你在 URL 上加空格了?
------解决方案--------------------
Java code
<a href="doUpdateStudent.jsp ? id=<%=stu.getId()%>">修改</a>
  相关解决方案