全角转半角-半角转全角

时间:2014-06-05 19:11:26   收藏:0   阅读:326
bubuko.com,布布扣
package com.sogou.html;

public class FullHalfReverse {

    /**
     * 半角转全角
     */
    public static String ToSBC(String input) {
        char[] c = input.toCharArray();
        int length=c.length;
        for (int i = 0; i < length; i++) {
            if (c[i] == ‘ ‘) {
                c[i] = ‘\u3000‘;
            } else if (c[i] < ‘\177‘) {
                c[i] = (char) (c[i] + 65248);
            }
        }
        return new String(c);
    }
    /**
     * 全角转半角
     */
    public static String ToDBC(String input){
        char[] c=input.toCharArray();
        int length=c.length;
        for(int i=0;i<length;i++){
            if(c[i]==‘\u3000‘){
                c[i]=‘ ‘;
            }else if(c[i]>‘\uFF00‘&&c[i]<‘\uFF5F‘){
                c[i]=(char)(c[i]-65248);
            }
        }
        return new String(c);
    }
}
bubuko.com,布布扣

 

全角转半角-半角转全角,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!