Home >Java >javaTutorial >How to create a PrintStream object using Java?
1. Use the output stream out as the output stream of PrintStream. It will not be automatically flushed and the default character set will be used.
PrintStream out = new PrintStream(OutputStream out);
2. Create a FileOutputstream corresponding to File, and then use FileOutputstream as the output stream of Printstream.
PrintStream out = new PrintStream(File file);
Create a FileOutputStream corresponding to Filename, and then use FileoutputStream as the output stream of PrintStream.
PrintStream out = new PrintStream(String fileName, String charsetName);
The above is the detailed content of How to create a PrintStream object using Java?. For more information, please follow other related articles on the PHP Chinese website!