标签:style blog http java color art
代码如下:
/** * 字符串长度截取 * @author Administrator * */ public class Main { public static void main(String[] args) { String str = "java教程网提醒您,全屏观看效果更佳,更高清,该视频以学习为目的,不含任何商业模式,并且不提供任何的技术服务等,如有其它问题可以联系网站管理员,更多java源码尽在源码天堂。"; int len = str.length(), maxLen = 62, temp = 0, i = 0; for(; i < len && temp <= maxLen; i++) { char c = str.charAt(i); int charLen = String.valueOf(c).getBytes().length; temp += charLen; System.out.println(c + ", start=" + i + ", end=" + temp); } str = str.substring(0, i-1); System.out.println("[" + str + "]"); } }
详细说明:http://java.662p.com/thread-447-1-1.html
实现java字符串长度截取功能,布布扣,bubuko.com
标签:style blog http java color art
原文地址:http://www.cnblogs.com/lianweikj02/p/3857794.html