Java: println with char array gives gibberish(Java:带有char数组的println给出乱码)
问题描述
这就是问题所在.这段代码:
String a = "0000";System.out.println(a);char[] b = a.toCharArray();System.out.println(b);
返回
<上一页>00000000
但是这段代码:String a = "0000";System.out.println("字符串 a:" + a);char[] b = a.toCharArray();System.out.println("char[] b:" + b);
返回
<上一页>字符串 a:0000字符 [] b: [C@56e5b723
世界上到底发生了什么?似乎应该有一个足够简单的解决方案,但我似乎无法弄清楚.
当你说
System.out.println(b);
它导致调用 print(char[] s)
然后 println()
print(char[] s)
的 JavaDoc 说:
打印一个字符数组.字符转换为字节根据平台的默认字符编码,而这些字节完全按照 write(int) 方法的方式写入.
所以它会逐字节打印出来.
当你说
System.out.println("char[] b: " + b);
这会导致调用 print(String)
,因此您实际上正在做的是将 String
附加到 Object
它在 Object
上调用 toString()
- 这与默认情况下的所有 Object
以及在 Array 的情况下一样
,打印引用的值(内存地址).
你可以这样做:
System.out.println("char[] b: " + new String(b));
请注意,这是错误的",因为您不关心编码并且使用系统默认值.尽早了解编码.
Here's the problem. This code:
String a = "0000";
System.out.println(a);
char[] b = a.toCharArray();
System.out.println(b);
returns
0000 0000
But this code:
String a = "0000";
System.out.println("String a: " + a);
char[] b = a.toCharArray();
System.out.println("char[] b: " + b);
returns
String a: 0000 char[] b: [C@56e5b723
What in the world is going on? Seems there should be a simple enough solution, but I can't seem to figure it out.
When you say
System.out.println(b);
It results in a call to print(char[] s)
then println()
The JavaDoc for print(char[] s)
says:
Print an array of characters. The characters are converted into bytes according to the platform's default character encoding, and these bytes are written in exactly the manner of the write(int) method.
So it performs a byte-by-byte print out.
When you say
System.out.println("char[] b: " + b);
It results in a call to print(String)
, and so what you're actually doing is appending to a String
an Object
which invokes toString()
on the Object
-- this, as with all Object
by default, and in the case of an Array
, prints the value of the reference (the memory address).
You could do:
System.out.println("char[] b: " + new String(b));
Note that this is "wrong" in the sense that you're not paying any mind to encoding and are using the system default. Learn about encoding sooner rather than later.
这篇关于Java:带有char数组的println给出乱码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:带有char数组的println给出乱码
基础教程推荐
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01