Uses of Class
java.io.BufferedWriter
Packages that useBufferedWriter
Package
Description
Provides classes that are fundamental to the design of the Java programming language.
Defines interfaces and classes for the Java virtual machine to access files, file attributes, and file systems.
Uses ofBufferedWriter injava.lang
Methods injava.lang that returnBufferedWriterModifier and TypeMethodDescriptionfinalBufferedWriterProcess.outputWriter()Returns aBufferedWriterconnected to the normal input of the process using the native encoding.finalBufferedWriterProcess.outputWriter(Charset charset) Returns aBufferedWriterconnected to the normal input of the process using a Charset.Uses ofBufferedWriter injava.nio.file
Methods injava.nio.file that returnBufferedWriterModifier and TypeMethodDescriptionstaticBufferedWriterFiles.newBufferedWriter(Path path,Charset cs,OpenOption... options) Opens or creates a file for writing, returning aBufferedWriterthat may be used to write text to the file in an efficient manner.staticBufferedWriterFiles.newBufferedWriter(Path path,OpenOption... options) Opens or creates a file for writing, returning aBufferedWriterto write text to the file in an efficient manner.