Home > Java > javaTutorial > How to create a PrintStream object using Java?

How to create a PrintStream object using Java?

WBOY
Release: 2023-04-26 21:40:24
forward
1446 people have browsed it

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);
Copy after login

2. Create a FileOutputstream corresponding to File, and then use FileOutputstream as the output stream of Printstream.

PrintStream out = new PrintStream(File file);
Copy after login

Create a FileOutputStream corresponding to Filename, and then use FileoutputStream as the output stream of PrintStream.

PrintStream out = new PrintStream(String fileName, String charsetName);
Copy after login

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!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template