Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilterOutputStream;
import java.io.OutputStream;

public class Main {
    public static void main(String[] args) throws Exception {

        byte[] buffer = { 65, 66, 67, 68, 69 };
        int i = 0;
        OutputStream os = new FileOutputStream("C://test.txt");
        FilterOutputStream fos = new FilterOutputStream(os);

        // writes buffer to the output stream
        fos.write(buffer, 2, 3);

        // forces byte contents to written out to the stream
        fos.flush();

        // create input streams
        FileInputStream fis = new FileInputStream("C://test.txt");

        while ((i = fis.read()) != -1) {
            // converts integer to the character
            char c = (char) i;

            System.out.println("Character read: " + c);
        }
        fos.close();
        fis.close();
    }
}