User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







java:io:printstream:write

This is an old revision of the document!


Table of Contents

write

Writes count or one byte to target stream/buffer.

write(int oneByte);
write(byte[] buffer, int offset, int length);

Language Example

      try {
 
        FileWriter stream = new FileWriter("output.txt"); // create file 
        BufferedWriter output = new BufferedWriter(stream);
 
        output.write("Hello Harddisk");             // Write to Stream
        output.close();                             //Close the output stream
       }
       catch (Exception e){
 
            System.err.println("Error: " + e.getMessage());
       }

output

  file content: Hello Harddisk
  
  or on console, e.g. on a Android System
  System.err Error: /output.txt (Read-only file system)
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
java/io/printstream/write.1353674823.txt · Last modified: 2024/02/16 01:11 (external edit)

Impressum Datenschutz