FileInputStream

Read file with FileInputStream

With this example we are going to demonstrate how to read a File with a FileInputStream. The FileInputStream obtains input bytes from a file in a file system. In short, to read a File with a FileInputStream you should:

  • Create a new File instance by converting the given pathname string into an abstract pathname.
  • Create a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system.
  • Create a StringBuffer with no characters in it and an initial capacity of 16 characters.
  • Read data from the file using read() API method of FileinputStream and append it to the StringBuffer, using append(char c) API method of StringBuffer.
  • Close the stream using close() API method.

Let’s take a look at the code snippet that follows:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.javacodegeeks.snippets.core;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
 
public class ReadFileWithFileInputStream {
 
public static void main(String[] args) {
         
        File file = new File("inputfile.txt");
         
        FileInputStream fin = null;
         
        int ch;
        StringBuffer sb = new StringBuffer();
 
        try {          
            // create FileInputStream object
            fin = new FileInputStream(file);
            // Read bytes of data from this input stream
            while((ch = fin.read()) != -1) {
                sb.append((char)ch);
            }           
            System.out.println("File content: " + sb);
        }
        catch (FileNotFoundException e) {
            System.out.println("File not found" + e);
        }
        catch (IOException ioe) {
            System.out.println("Exception while reading file " + ioe);
        }
        finally {
            // close the stream using close method
            try {
                if (fin != null) {
                    fin.close();
                }
            }
            catch (IOException ioe) {
                System.out.println("Error while closing stream: " + ioe);
            }
        }      
    }
}

 
This was an example of how to read a File with a FileInputStream in Java.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button