- public class Test {
- public static void main(String[] args) throws UnsupportedEncodingException {
- String str1 = "我爱abc";
- String str2 = "a";
- byte[] buf1 = str1.getBytes("unicode");
- byte[] buf2 = str2.getBytes("unicode");
- System.out.println(buf1.length+"字节");
- for (byte c : buf1) {
- System.out.print(c + " ");
- }
- System.out.println();
- System.out.println(buf2.length+"字节");
- for (byte c : buf2) {
- System.out.print(c + " ");
- }
- }
- }
复制代码
我在咱们的论坛上到了一段代码,但是其中的for循环那一块看不懂是怎么回事,还有我将代码复制想运行一下但是编译失败。求解释
|
-
w23.png
(7.61 KB, 下载次数: 15)
这是运行后的错误提示
|