首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

使用action属性接收参数,中文有关问题

2012-09-23 
使用action属性接收参数,中文问题客户端JSP请求(这里可能输入的是中文,所以可能就会出现乱码问题)%@ page

使用action属性接收参数,中文问题
客户端JSP请求(这里可能输入的是中文,所以可能就会出现乱码问题)

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <base href="<%=basePath%>">        <title>My JSP 'index.jsp' starting page</title><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="This is my page"><!--<link rel="stylesheet" type="text/css" href="styles.css">-->  </head>    <body>使用action属性接收参数,测试中文问题<form action="user/User_add" method="post">姓名:<input type="text" name="name"></input><input type="submit" value="submit"/></form>  </body></html>
?现在要看的是web.xml因为用户一发送请求就先到web.xml,web.xml过滤所有的用户请求(看注释)
<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  <filter><filter-name>struts2</filter-name><!-- 使用2.1.6以前版本的struts2有个bug --><!-- <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>--><!-- 下面是配置2.1.6以上的版本的struts --><filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern></filter-mapping>  <welcome-file-list>    <welcome-file>index.jsp</welcome-file>  </welcome-file-list></web-app>
?struts.xml文件的配置
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"    "http://struts.apache.org/dtds/struts-2.0.dtd"><struts><constant name="struts.i18n.encoding" value="UTF-8"></constant><constant name="struts.ognl.allowStaticMethodAccess" value="true"></constant>    <package name="user" namespace="/user" extends="struts-default">                <action name="*_*" method="{2}">            <result>/{1}_{2}_success.jsp</result>            <!-- {0}_success.jsp -->        </action>    </package>    </struts>
?Action的代码
package com.lbx.action;import com.opensymphony.xwork2.ActionSupport;@SuppressWarnings("serial")public class UserAction extends ActionSupport{private String name;public String add() {System.out.println("name=" + name);return SUCCESS;}public String getName() {return name;}public void setName(String name) {this.name = name;}}
?

热点排行