/** * 编程:编写一个截取字符串的函数,输入一个字符串和字节数,输出按字节书截取的字符串,但是要保证汉字不能截半个,,如“我ABC”,4 * 应该截取“我AB”,输入“我ABC汉DEF”,6 然后输出“我ABC”,而不是半个汗字; * */ public class StringSub { /** * GBK格式下,汉字是两个字节,并且根据Unicode编码, * 所有汉字的首字节全是负数,第二个字节有的是负数,有的是正数; * * @param buf * @param n * @return */ public static int trimGBK(byte[] buf, int n) { int num = 0; boolean bChineseFirstByte = false; for (int i = 0; i < n; i++) { if (buf[i] < 0 && !bChineseFirstByte) { bChineseFirstByte = true; } else { num++; bChineseFirstByte = false; } } return num; } public static void main(String[] args) throws Exception { String str = "我a妠妠华abc我爱人币def"; int num = trimGBK(str.getBytes("GBK"), 6); System.out.println(str.substring(0, num)); } }