Java.io.PrintStream.write byte len() 方法 Java.io.PrintStream.println String() 方法 Java.io.PrintStream.write Byte() 方法 Java.io.PrintStream.write byte len() 方法 package com.codingdict; import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { byte c[] = {70, 71, 72, 73, 74, 75, 76}; // create printstream object PrintStream ps = new PrintStream(System.out); // write bytes 1-3 ps.write(c, 1, 3); // flush the stream ps.flush(); } } Java.io.PrintStream.println String() 方法 Java.io.PrintStream.write Byte() 方法