jsp页面跳转到struts2里边的action中文 乱码,怎么解决?

2024-11-29 07:58:09
推荐回答(4个)
回答1:

你最好用form post方式提交且在action中为name设置成action中成员变量就行了
如下代码参考:
function sub(name)
{
document.getElementById("name").value=name;
var form = document.getElementById("formname");
form.action = "download.action;
form.submit();
}



回答2:

你重新编码试试:
String param = new String(request.getParamter("param").getBytes("ISO8859-1"),"UTF-8");

回答3:



先定义一个带参数的url,然后下面调用它
下载

回答4:

设置form表单的method="post"