共计 580 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用字符流和字节流来输出中文字符。
- 使用字符流输出中文字符:
import java.io.*;
public class Main {public static void main(String[] args) {
try {BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(System.out, "UTF-8"));
writer.write("你好,世界!");
writer.flush();} catch (IOException e) {e.printStackTrace();
}
}
}
- 使用字节流输出中文字符:
import java.io.*;
public class Main {public static void main(String[] args) {
try {OutputStream outputStream = new FileOutputStream("output.txt");
outputStream.write("你好,世界!".getBytes("UTF-8"));
outputStream.close();} catch (IOException e) {e.printStackTrace();
}
}
}
请注意,为了正确地输出中文字符,需要指定正确的字符编码,例如 UTF-8。
丸趣 TV 网 – 提供最优质的资源集合!
正文完