博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jsf初学解决faces 中文输入乱码问题
阅读量:6112 次
发布时间:2019-06-21

本文共 2310 字,大约阅读时间需要 7 分钟。

转载自:http://www.cnblogs.com/xxtkong/p/3501944.html

中文乱码,貌似在java里很常见,请看简单代码:

很简单的faces

测试取值:

 bean

private String title;        public String search()    {        if(i==2)        {            return "ok";        }        if(title.equals("一本书"))        return "ok";        else{            return "false";        }            }    /**     * @return the title     */    public String getTitle() {        return  title;    }    /**     * @param title the title to set     */    public void setTitle(String title) {                this.title = title;    }

当输入中文 在获取输入值时始终是乱码,各种解决不行。。

后来看到一篇文章(具体文章不记得)使用转换器。

在看使用转换器具体实现:

package com.cnpdx;import java.io.UnsupportedEncodingException;import javax.faces.component.UIComponent;import javax.faces.component.UIInput;import javax.faces.context.FacesContext;import javax.faces.convert.Converter;import javax.faces.convert.ConverterException;/** * * @author taoxy */public class StringConverter implements Converter{    /**     *     * @param context     * @param component     * @param newValues     * @return     * @throws ConverterException     */    @Override   public Object getAsObject(FacesContext context, UIComponent component,String newValues) throws ConverterException {        String newstr = "";        if (newValues == null) {                newValues = "";          }          byte[] byte1 = null;          try {           byte1 = newValues.getBytes("ISO-8859-1");           newstr = new String(byte1, "UTF-8");           UIInput input=(UIInput)component;//           input.setSubmittedValue(newstr);          } catch (UnsupportedEncodingException e) {           e.printStackTrace();          }          return newstr; } public String getAsString(FacesContext context, UIComponent component,   Object Values) throws ConverterException {   return (String) Values; }    }

 

配置一下faces-config

com.cnpdx.stringconverter
com.cnpdx.StringConverter

 

最后修改下faces

修改如下:

测试取值:

OK 中文乱码问题算是解决了

你可能感兴趣的文章
go test命令參数问题
查看>>
linux 搜索文本
查看>>
超实用Mac软件分享(二)
查看>>
Android JSON数据解析
查看>>
DEV实现日期时间效果
查看>>
java注解【转】
查看>>
Oracle表分区
查看>>
centos 下安装g++
查看>>
嵌入式,代码调试----GDB扫盲
查看>>
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>