Java:带有字符数组的 println 会出现乱码 [英] Java: println with char array gives gibberish

查看:25
本文介绍了Java:带有字符数组的 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:带有字符数组的 println 会出现乱码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆