汉字占多个字节,若按指定字节长度截取字符串,如何处理1/3个汉字?

截取字符串的函数 按照字节

编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字不被截半个,如“我ABC”4,应该截为“我AB”,输入“我ABC汉DEF”,6,应该输出为“我ABC”而不是“我ABC+汉的半个”。

分析

不能使用substring(beginIndex, endIndex),因为它 是返回的字符,题目要求的是字节

Returns a new string that is a substring of this string. The substring begins at the specified beginIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-beginIndex.

UTF- 8 和 GBK

UTF- 8是用以解决国际上字符的一种多字节编码,它对英文使用8位(即一个字节),中文使用24为(三个字节)来编码。

GBK是国家标准GB2312基础上扩容后兼容GB2312的标准。GBK的文字编码是用双字节来表示的,即不论中、英文字符均使用双字节来表示。

String x = "我";
System.out.println(x.getBytes("utf-8").length);
System.out.println(x.getBytes("GBK").length);
/**
 * 输出
 * 3
 * 2
 */
String s = "我ABC汗";
System.out.println(new String(s.getBytes("GBK"), "GBK"));
输出"我ABC汗"

System.out.println(new String(s.getBytes(), "GBK"));
乱码 鎴慉BC姹�

System.out.println(new String(s.getBytes(), "utf8"));
输出"我ABC汗" 

System.out.println(new String(s.getBytes("utf8"), "utf8"));
输出"我ABC汗"  

System.out.println(new String(s.getBytes(), "ascii"));
���ABC���
可以看出默认使用 utf8 编码,然后 ascii 解码,英文正常,但是汉字是3个

分析
默认是utf8编码,所以不写没事。encode 和 decode 需要相同
记住 jvm 里面是 unicode,出来时候才会具体编码

解决方法

思路就是从 String 的每个字符 遍历,然后如果是中文的,就-2,如果是英文的,-1。
String.valueOf(b[i]).getBytes().length > 1判断是否是中文

static String split(String orignal, int count) {
    // count 表示多少个字节
    // 1个中文字符是2个字节
    char[] b = orignal.toCharArray();
    // constructor need character's no, so <= byte's count
    StringBuilder sb = new StringBuilder(count);
    for (int i = 0; i < b.length; i++) {
        if (count <= 0) {
            break;
        }

        String temp = String.valueOf(b[i]);
        // System.out.println(temp + "->" + temp.getBytes().length);

        // Chinese character
        if (temp.getBytes().length > 1) {
            count -= 2;
            if (count < 0) {
                break;
            }

        } else {
            count--;
        }

        sb.append(temp);
    }

    return sb.toString();
}

改进方法

static String otherSplit(String original, int count) {

    StringBuilder sb = new StringBuilder();
    // 这儿是 count 和 i 两头并进
    // i 每次都 +1 ,每次都会至少找到1个字符(英文1个,中文2个)
    // 如果是中文字符,count 就-1
    // 对于半个中文
    for (int i = 0; i < count - 1; i++) {
        char c = original.charAt(i);
        if (String.valueOf(c).getBytes().length > 1) {
            count--;
        }
        sb.append(c);
    }
    return sb.toString();

}

方法有问题

String s = "我ABCD爱哈BAC汗";
System.out.println(otherSplit(s, 6));
//我ABC
System.out.println(split(s, 6));
//我ABCD

对于最后一个英文字符,会少一个字母

测试

public static void main(String[] args) throws UnsupportedEncodingException {

    String s = "我额A爱哈BAC汗";

    System.out.println(otherSplit(s, 2));
    System.out.println(otherSplit(s, 3));
    System.out.println(otherSplit(s, 4));
    System.out.println(otherSplit(s, 5));
    System.out.println(otherSplit(s, 6));
    System.out.println(otherSplit(s, 9));

    System.out.println(split(s, 2));
    System.out.println(split(s, 3));
    System.out.println(split(s, 4));
    System.out.println(split(s, 5));
    System.out.println(split(s, 6));
    System.out.println(split(s, 9));
}
/**
 我
我
我额
我额
我额A
我额A爱哈
我
我
我额
我额A
我额A
我额A爱哈
 */

判断是否是中文

public static void main(String[] args) throws UnsupportedEncodingException {

        char c = '我';
        System.out.println(Character.getNumericValue(c));

        String s = String.valueOf(c);
        System.out.println(s.getBytes("utf8").length);
        System.out.println(s.getBytes("gbk").length);

        System.out.println(Arrays.toString(s.getBytes("utf8")));
        System.out.println(Arrays.toString(s.getBytes("gbk")));

    }/**
    -1
    3
    2
    [-26, -120, -111]
    [-50, -46]
     */

可以通过 Character.getNumericValue 返回-1
也可以根据字节数,中文是多个字节,英文1个字节
根据字节得到的数字,中文是负数,英文和符号在0-256之间

getNumericValue() only applies to characters that represent numbers, such as the digits ‘0’ through ‘9’. As a convenience, it also treats the ASCII letters as if they were digits in a base-36 number system (so ‘A’ is 10 and ‘Z’ is 35).

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值