码迷,mamicode.com
首页 > 其他好文 > 详细

字节数截取字符串

时间:2017-01-07 19:28:03      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:span   class   pre   div   rgs   break   oid   stat   else   

public class ByteSub {

    public static void subString(String str, int a) {

        int bytes = 0;
        String result = "";
        for (int x = 0; x < str.length(); x++) {
            byte[] b = (str.charAt(x) + "").getBytes();
            bytes += b.length;
            if (bytes > a) {
                break;
            } else {
                result += str.charAt(x);
            }
        }
        System.out.println(result);
    }

    public static void main(String[] args) {
        subString("中国abcd", 3);
    }
}

 

字节数截取字符串

标签:span   class   pre   div   rgs   break   oid   stat   else   

原文地址:http://www.cnblogs.com/LZL-student/p/6260022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!