📅  最后修改于: 2023-12-03 14:43:04.244000             🧑  作者: Mango
Java程序的输出是编程语言中重要的基础。在Java中,您可以使用不同的方法来输出你的程序结果。在这篇文章中,我们将介绍29个Java中输出程序结果的方法。
System.out.println("这是一个输出语句");
System.out.print("这是一个输出语句");
System.out.printf("我的名字是 %s,年龄是 %d", "John", 28);
System.out.format("我的名字是 %s,年龄是 %d", "John", 28);
System.out.write("这是一个输出语句".getBytes());
System.err.println("这是一个错误输出语句");
System.out.append("这是一个输出语句");
System.console().printf("我的名字是 %s,年龄是 %d", "John", 28);
System.getProperty("user.name");
System.getenv();
System.out.writeBytes("这是一个输出语句");
System.out.writeChars("这是一个输出语句");
System.out.writeUTF("这是一个输出语句");
System.out.println(100);
System.out.println(3.1415926);
System.out.println(new char[]{'H', 'e', 'l', 'l', 'o'});
System.out.println(true);
String s = "Hello World!";
System.out.println(s);
System.out.println("Hello World!");
String.format("我的名字是 %s,年龄是 %d", "John", 28);
DecimalFormat df = new DecimalFormat("#.00");
System.out.println(df.format(3.1415926));
PrintStream ps = new PrintStream(System.out);
ps.printf("我的名字是 %s,年龄是 %d", "John", 28);
PrintWriter pw = new PrintWriter(System.out);
pw.printf("我的名字是 %s,年龄是 %d", "John", 28);
OutputStream os = new FileOutputStream("output.txt");
os.write("这是一个输出语句".getBytes());
byte[] bytes = "这是一个输出语句".getBytes();
OutputStream os = new FileOutputStream("output.txt");
os.write(bytes);
DataOutputStream dos = new DataOutputStream(new FileOutputStream("output.txt"));
dos.write("这是一个输出语句".getBytes());
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write("这是一个输出语句".getBytes());
baos.writeTo(System.out);
PipedOutputStream pos = new PipedOutputStream();
pos.write("这是一个输出语句".getBytes());
PipedInputStream pis = new PipedInputStream(pos);
int data = pis.read();
StringWriter sw = new StringWriter();
sw.write("这是一个输出语句");