摘要: //获取字符串字节方法1public static int getWordCount(String s) { int length = 0; for (int i = 0; i < s.length(); i++) { int ascii = Character.codePointAt(s, i); 阅读全文
posted @ 2022-05-19 10:47 丶Ronnie 阅读(678) 评论(0) 推荐(0)