Home > Java > javaTutorial > body text

Writing to a file

DDD
Release: 2024-11-06 11:52:02
Original
936 people have browsed it
  • To open a file for output, a FileOutputStream object is used.

  • Two common constructors are:

  • FileOutputStream(String filename) throws FileNotFoundException

  • FileOutputStream(String filename, boolean include) throws FileNotFoundException

  • If the file cannot be created, a FileNotFoundException will be thrown.

  • In the first constructor, an existing file with the same name is destroyed on opening.

  • In the second constructor, if include is true, the data is added to the end of the file; otherwise, the file is overwritten.

  • To write to a file, the write(int valbyte) method is used, which writes only the 8 low-order bits of the integer.

  • If an error occurs during recording, an IOException will be thrown.

  • After use, the file must be closed with the close() method, which frees up system resources and ensures that the data in the buffer is written.

Gravando em um arquivo

Gravando em um arquivo

The above is the detailed content of Writing to a file. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!