Reading Bytes from a DataInputStream : Input Output Stream « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. Email
14. Event
15. File Input Output
16. Game
17. Generics
18. Hibernate
19. I18N
20. J2EE
21. J2ME
22. JDK 6
23. JSP
24. JSTL
25. Language Basics
26. Network Protocol
27. PDF RTF
28. Reflection
29. Regular Expressions
30. Scripting
31. Security
32. Servlets
33. Spring
34. Swing Components
35. Swing JFC
36. SWT JFace Eclipse
37. Threads
38. Tiny Application
39. Velocity
40. Web Services SOA
41. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » Input Output StreamScreenshots 
Reading Bytes from a DataInputStream
Reading Bytes from a DataInputStream

import java.io.DataInputStream;
import java.io.EOFException;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

public class EOF {
  public static void main(String args[]) {
    DataInputStream is = null;
    byte ch;
    try {
      is = new DataInputStream(new FileInputStream("EOF.java"));
      while (true) { // exception deals catches EOF
        ch = is.readByte();
        System.out.print((charch);
        System.out.flush();
      }
    catch (EOFException eof) {
      System.out.println(" >> Normal program termination.");
    catch (FileNotFoundException noFile) {
      System.err.println("File not found! " + noFile);
    catch (IOException io) {
      System.err.println("I/O error occurred: " + io);
    catch (Throwable anything) {
      System.err.println("Abnormal exception caught !: " + anything);
    finally {
      if (is != null) {
        try {
          is.close();
        catch (IOException ignored) {
        }
      }
    }
  }
}
           
       
Related examples in the same category
1. Buffer EqualityBuffer Equality
2. Input and output with human-readable text filesInput and output with human-readable text files
3. Input and output of primitive values with binary filesInput and output of primitive values with binary files
4. Input and output of arrays and objects with binary filesInput and output of arrays and objects with binary files
5. Input and output of primitive values with random access binary filesInput and output of primitive values with random access binary files
6. Input and output using strings and string buffersInput and output using strings and string buffers
7. Timing Unbuffered Reads
8. Comparing Buffered and Unbuffered Writing Performance
9. Read a file and print, using LineReader and System.out
10. Demonstrate ProgressMeterInputStream
11. Pipe Test
12. Converting text to and from ByteBuffersConverting text to and from ByteBuffers
13. Demonstrates standard I/O redirection
14. Creating a very large file using mappingCreating a very large file using mapping
15. Demonstrates the use of the File class to create directories and manipulate files
16. Mapping an entire file into memory for reading
17. Mapped IOMapped IO
18. What happens when the entire file isn't in your mapping region
19. Object serializationObject serialization
20. Locking portions of a mapped fileLocking portions of a mapped file
21. File read and writeFile read and write
w__w___w_._j___a__va___2s__.___c__om_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.