【发布时间】:2010-02-17 14:02:07
【问题描述】:
我有一个 jsp 页面(比如说 page1.jsp),它有一个带有 action="page2.jsp" 的 html 表单。
在 page1.jsp 和 page2.jsp 中,我在 head 部分之外有 <%@page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>,在 head 部分中有 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">。
如果我以我在 url(get 方法) 中看到的形式写希腊字母,则类似
http://localhost:8080//addProblem.jsp?lastNameForm=%CF%84%CF%85%CE%B8%CF%84%CF%85%CE%B8%CF%84%CF%85&firstNameForm=&eMa ....
和从page2.Jsp一起使用<% out.println(request.getParameter("lastNameForm")); %>
我明白了αÏδαÏδ
我能做什么?
【问题讨论】: