Here is a hierarchy of classes to deal with Input and Output streams.

Similar documents
Here is a hierarchy of classes to deal with Input and Output streams.

Exceptions, try - catch - finally, throws keyword. JAVA Standard Edition

CSC 1214: Object-Oriented Programming

Software Practice 1 - Error Handling

Software Practice 1 - Error Handling Exception Exception Hierarchy Catching Exception Userdefined Exception Practice#5

Files and IO, Streams. JAVA Standard Edition

Sri Vidya College of Engineering & Technology Question Bank


Unit 5 - Exception Handling & Multithreaded

2- Runtime exception: UnChecked (execution of program) automatically propagated in java. don t have to throw, you can but isn t necessary

6.Introducing Classes 9. Exceptions

UNIT - V. Inheritance Interfaces and inner classes Exception handling Threads Streams and I/O

Lecture 19 Programming Exceptions CSE11 Fall 2013

Introduction. Exceptions: An OO Way for Handling Errors. Common Runtime Errors. Error Handling. Without Error Handling Example 1

Programming II (CS300)

Input, Output and Exceptions. COMS W1007 Introduction to Computer Science. Christopher Conway 24 June 2003

ECE 122. Engineering Problem Solving with Java

Le L c e t c ur u e e 5 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Exception Handling

Programming II (CS300)

C16b: Exception Handling

By: Abhishek Khare (SVIM - INDORE M.P)

Exceptions - Example. Exceptions - Example

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 7

Unit 4. Exception handling mechanism. new look try/catch mechanism in Java Enumeration in Java 5 - usage.

Java Programming Language Mr.Rungrote Phonkam

More on Exception Handling

BBM 102 Introduction to Programming II Spring Exceptions

CSC System Development with Java. Exception Handling. Department of Statistics and Computer Science. Budditha Hettige

Data Structures. 02 Exception Handling

More on Exception Handling

Fundamentals of Object Oriented Programming

Exceptions and I/O: sections Introductory Programming. Errors in programs. Exceptions

Introductory Programming Exceptions and I/O: sections

ITI Introduction to Computing II

Exception handling in Java. J. Pöial

QUESTION BANK. SUBJECT CODE / Name: CS2311 OBJECT ORIENTED PROGRAMMING

ITI Introduction to Computing II

Lecture 20. Java Exceptional Event Handling. Dr. Martin O Connor CA166

CSC207H: Software Design. Exceptions. CSC207 Winter 2018

Exceptions. References. Exceptions. Exceptional Conditions. CSE 413, Autumn 2005 Programming Languages

Introduction Unit 4: Input, output and exceptions

Exceptions Handling Errors using Exceptions

What are Exceptions?

Exceptions. CSE 142, Summer 2002 Computer Programming 1.

Exceptions. Readings and References. Exceptions. Exceptional Conditions. Reading. CSE 142, Summer 2002 Computer Programming 1.

For more details on SUN Certifications, visit

Exceptions. CSC207 Winter 2017

16-Dec-10. Consider the following method:

Chapter 14. Exception Handling and Event Handling ISBN

Object Oriented Programming Exception Handling

BBM 102 Introduction to Programming II Spring 2017

File IO. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 20

CS159. Nathan Sprague

COE318 Lecture Notes Week 10 (Nov 7, 2011)

Chapter 12 Exception Handling

COMP200 EXCEPTIONS. OOP using Java, based on slides by Shayan Javed

CS115. Chapter 17 Exception Handling. Prof. Joe X. Zhou Department of Computer Science. To know what is exception and what is exception handling

Exception-Handling Overview

Full file at Chapter 2 - Inheritance and Exception Handling

Errors and Exceptions

EXCEPTION HANDLING. Summer 2018

Object-Oriented Programming in the Java language

CS 61B Data Structures and Programming Methodology. July 7, 2008 David Sun

C17: File I/O and Exception Handling

Correctness and Robustness

WOSO Source Code (Java)

Exceptions. Produced by. Algorithms. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology

Administration. Exceptions. Leftovers. Agenda. When Things Go Wrong. Handling Errors. CS 99 Summer 2000 Michael Clarkson Lecture 11

Chapter 13 Exception Handling

CS11 Java. Fall Lecture 4

Darshan Institute of Engineering & Technology for Diploma Studies

Special error return Constructors do not have a return value What if method uses the full range of the return type?

CSCI 261 Computer Science II

Exceptions vs. Errors Exceptions vs. RuntimeExceptions try...catch...finally throw and throws

Exception in thread "main" java.lang.arithmeticexception: / by zero at DefaultExceptionHandling.main(DefaultExceptionHandling.

Exception Handling in Java. An Exception is a compile time / runtime error that breaks off the

Assoc. Prof. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

National University. Faculty of Computer Since and Technology Object Oriented Programming

Java Programming. MSc Induction Tutorials Stefan Stafrace PhD Student Department of Computing

Compile error. 2. A run time error occurs when the program runs and is caused by a number of reasons, such as dividing by zero.

Exception Handling. Sometimes when the computer tries to execute a statement something goes wrong:

CN208 Introduction to Computer Programming

Java Errors and Exceptions. Because Murphy s Law never fails

Exceptions. Errors and Exceptions. Dealing with exceptions. What to do about errors and exceptions

Exception Handling. Run-time Errors. Methods Failure. Sometimes when the computer tries to execute a statement something goes wrong:

Course Status Polymorphism Containers Exceptions Midterm Review. CS Java. Introduction to Java. Andy Mroczkowski

Std 12 Lesson-10 Exception Handling in Java ( 1

Java file manipulations

A Third Look At Java. Chapter Seventeen Modern Programming Languages, 2nd ed. 1

Day 8. COMP1006/1406 Summer M. Jason Hinek Carleton University

Unit IV Generic Programming

School of Informatics, University of Edinburgh

CS 200 File Input and Output Jim Williams, PhD

File Operations in Java. File handling in java enables to read data from and write data to files

EXCEPTIONS. Objectives. The try and catch Statements. Define exceptions. Use try, catch and finally statements. Describe exception categories

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

I/O Streams. program. Standard I/O. File I/O: Setting up streams from files. program. File I/O and Exceptions. Dr. Papalaskari 1

EXCEPTIONS. Java Programming

CS 200 Command-Line Arguments & Exceptions Jim Williams, PhD

EXCEPTION-HANDLING INTRIVIEW QUESTIONS

Transcription:

PART 15 15. Files and I/O 15.1 Reading and Writing Files A stream can be defined as a sequence of data. The InputStream is used to read data from a source and the OutputStream is used for writing data to a destination. Here is a hierarchy of classes to deal with Input and Output streams. The two important streams are FileInputStream and FileOutputStream which would be discussed in this tutorial. 15.2 FileInputStream This stream is used for reading data from the files. Objects can be created using the keyword new and there are several types of constructors available. Following constructor takes a file name as a string to create an input stream object to read the file.:

InputStream f = new FileInputStream("C:/java/hello"); Following constructor takes a file object to create an input stream object to read the file. First we create a file object using File() method as follows: File f = new File("C:/java/hello"); InputStream f = new FileInputStream(f); Once you have InputStream object in hand then there is a list of helper methods which can be used to read to stream or to do other operations on the stream. Methods with Description public void close() throws IOException This method closes the file output stream. Releases any system resources associated with the file. Throws an IOException. public int read(byte[] r) throws IOException This method reads r.length bytes from the input stream into an array. Returns the total number of bytes read. If end of file -1 will be returned. public int available() throws IOException Gives the number of bytes that can be read from this file input stream. Returns an int. 15.3 FileOutputStream FileOutputStream is used to create a file and write data into it.the stream would create a file, if it doesn't already exist, before opening it for output. Here are two constructors which can be used to create a FileOutputStream object. Following constructor takes a file name as a string to create an input stream object to write the file.: OutputStream f = new FileOutputStream("C:/java/hello") Following constructor takes a file object to create an output stream object to write the file. First we create a file object using File() method as follows: File f = new File("C:/java/hello");

OutputStream f = new FileOutputStream(f); Once you have OutputStream object in hand then there is a list of helper methods which can be used to write to stream or to do other operations on the stream. Methods with Description public void close() throws IOException This method closes the file output stream. Releases any system resources associated with the file. Throws an IOException. public void write() throws IOException This methods writes the specified byte to the output stream. Example Following is the example to demonstrate InputStream and OutputStream: import java.io.*; public class filestreamtest public static void main(string args[]) try char[] data = a, b, c, d, e ; OutputStream outfile = new FileOutputStream("C:/test.txt"); for(int x=0; x < data.length ; x++) outfile.write( data[x] ); // writes the bytes outfile.close(); InputStream infile = new FileInputStream("C:/test.txt"); int size = infile.available(); for(int i=0; i< size; i++) System.out.print((char) infile.read() + " "); infile.close(); catch(ioexception e) System.out.print("Exception"); The above code would create file test.txt and would write given characters. Same would be output on the stdout screen.

15.4 File Navigation and I/O There are several other classes that we would be going through to get to know the basics of File Navigation and I/O. FileReader Class FileWriter Class File Class File Reader This class inherits from the InputStream class. FileReader is used for reading streams of characters. Following syntax creates a new FileReader, given the File to read from. FileReader(File file) File Writer This class inherits from the OutputStream class. The class is used for writing streams of characters. Following syntax creates a FileWriter object given a File object. FileWriter(File file) Example Following is the example to demonstrate class: import java.io.*; public class FileRead public static void main(string args[])throws IOException File file = new File("Hello1.txt"); // creates the file file.createnewfile(); // creates a FileWriter Object FileWriter writer = new FileWriter(file); // Writes the content to the file writer.write("this\n is\n an\n example\n");

writer.flush(); writer.close(); //Creates a FileReader Object FileReader fr = new FileReader(file); //Creates a LineNumberReader Object LineNumberReader lnreader = new LineNumberReader(fr); String line = ""; while ((line = lnreader.readline())!= null) System.out.println(lnreader.getLineNumber() + ": " + line); fr.close(); This would produce following result: 1: This 2: is 3: an 4: example 15.4 Directories in Java Creating Directories There are two useful File utility methods which can be used to create directories: The mkdir( ) method creates a directory, returning true on success and false on failure. Failure indicates that the path specified in the File object already exists, or that the directory cannot be created because the entire path does not exist yet. The mkdirs() method creates both a directory and all the parents of the directory. Following example creates "c:/java/example/folder" directory: import java.io.file; public class CreateDir public static void main(string args[]) String dirname = "c:/java/example/folder"; File d = new File(dirname); // Create directory now. if(d.mkdirs()) System.out.print( created ); else System.out.print( error! Not created );

Note: Java automatically takes care of path separators on UNIX and Windows as per conventions. If you use a forward slash (/) on a Windows version of Java, the path will still resolve correctly. Reading Directories: A directory is a File that contains a list of other files and directories. When you create a File object and if it is a directory, the isdirectory( ) method will return true. You can call list( ) on that object to extract the list of other files and directories inside. The program shown here illustrates how to use list( ) to examine the contents of a directory: import java.io.file; public class DirList public static void main(string args[]) String dirname = "c:/mysql"; File f1 = new File(dirname); if (f1.isdirectory()) System.out.println( "Directory of " + dirname); String s[] = f1.list(); for (int i=0; i < s.length; i++) File f = new File(dirname + "/" + s[i]); if (f.isdirectory()) System.out.println(s[i] + " is a directory"); else System.out.println(s[i] + " is a file"); else System.out.println(dirname + " is not a directory"); This would produce following result: Directory of /mysql bin is a directory lib is a directory demo is a directory test.txt is a file README is a file index.html is a file include is a directory

PART 16 16. Exceptions An exception is a problem that arises during the execution of a program. An exception can occur for many different reasons, including the following: A user has entered invalid data. A file that needs to be opened cannot be found. A network connection has been lost in the middle of communications, or the JVM has run out of memory. Some of these exceptions are caused by user error, others by programmer error, and others by physical resources. To understand how exception handling works in Java, you need to understand the three categories of exceptions: Checked exceptions: A checked exception is an exception that is typically a user error or a problem that cannot be foreseen by the programmer. For example, if a file is to be opened, but the file cannot be found, an exception occurs. Runtime exceptions: A runtime exception is an exception that occurs that probably could have been avoided by the programmer. Errors: These are not exceptions at all, but problems that arise beyond the control of the user or the programmer. For example, if a stack overflow occurs, an error will arise. They are ignored at the time of compilation. 16.1 Exception Hierarchy All exception classes are subtypes of the java.lang.exception class. The exception class is a subclass of the Throwable class. There is another subclass called Error which is derived from the Throwable class.

Errors are not normally trapped from the Java programs. These conditions normally happen in case of severe failures, which are not handled by the java programs. Errors are generated to indicate errors generated by the runtime environment. Example : JVM is out of Memory. Normally programs cannot recover from errors. The Exception class has two main subclasses : IOException class and RuntimeException Class. 16.2 Java - Built-in Exceptions The most general of exceptions are subclasses of the standard type RuntimeException. Java defines several other types of exceptions that relate to its various class libraries. Following is the list of Java Unchecked RuntimeException. Exception ArithmeticException ArrayIndexOutOfBoundsException ArrayStoreException ClassCastException IllegalArgumentException IllegalMonitorStateException Description Arithmetic error, such as divide-by-zero. Array index is out-of-bounds. Assignment to an array element of an incompatible type. Invalid cast. Illegal argument used to invoke a method. Illegal monitor operation, such as waiting on an unlocked thread.

IllegalStateException IllegalThreadStateException IndexOutOfBoundsException NegativeArraySizeException NullPointerException NumberFormatException SecurityException StringIndexOutOfBounds UnsupportedOperationException Environment or application is in incorrect state. Requested operation not compatible with current thread state. Some type of index is out-of-bounds. Array created with a negative size. Invalid use of a null reference. Invalid conversion of a string to a numeric format. Attempt to violate security. Attempt to index outside the bounds of a string. An unsupported operation was encountered. Following is the list of Java Checked Exceptions. Exception ClassNotFoundException CloneNotSupportedException IllegalAccessException InstantiationException InterruptedException NoSuchFieldException NoSuchMethodException Description Class not found. Attempt to clone an object that does not implement the Cloneable interface. Access to a class is denied. Attempt to create an object of an abstract class or interface. One thread has been interrupted by another thread. A requested field does not exist. A requested method does not exist. 16.3 Catching Exceptions A method catches an exception using a combination of the try and catch keywords. A try/catch block is placed around the code that might generate an exception. Code within a try/catch block is referred to as protected code, and the syntax for using try/catch looks like the following: try //Protected code catch(exceptionname e1) A catch statement involves declaring the type of exception you are trying to catch. If an exception occurs in protected code, the catch block (or blocks) that follows the try is checked. If the type of exception that occurred is listed in a catch block, the

exception is passed to the catch block much as an argument is passed into a method parameter. Example The following is an array is declared with 2 elements. Then the code tries to access the 3rd element of the array which throws an exception. // File Name : ExcepTest.java import java.io.*; public class ExcepTest public static void main(string args[]) try int a[] = new int[2]; System.out.println("Access element three :" + a[3]); catch(arrayindexoutofboundsexception e) System.out.println("Exception thrown :" + e); This would produce following result: Exception thrown :java.lang.arrayindexoutofboundsexception: 3 16.4 Multiple catch Blocks A try block can be followed by multiple catch blocks. The syntax for multiple catch blocks looks like the following: try //Protected code catch(exceptiontype1 e1) catch(exceptiontype2 e2) catch(exceptiontype3 e3) The previous statements demonstrate three catch blocks, but you can have any number of them after a single try. If an exception occurs in the protected code, the exception is thrown to the first catch block in the list. If the data type of the exception

thrown matches ExceptionType1, it gets caught there. If not, the exception passes down to the second catch statement. This continues until the exception either is caught or falls through all catches, in which case the current method stops execution and the exception is thrown down to the previous method on the call stack. Example Here is code segment showing how to use multiple try/catch statements. try file = new FileInputStream(fileName); x = (byte) file.read(); catch(ioexception i) i.printstacktrace(); return -1; catch(filenotfoundexception f) //Not valid! f.printstacktrace(); return -1; 16.5 throws/throw Keywords If a method does not handle a checked exception, the method must declare it using the throws keyword. The throws keyword appears at the end of a method's signature. Throws keyword sends the exception to another class. The following method declares that it throws a RemoteException: import java.io.*; public class classname public void deposit(double amount) throws RemoteException // Method implementation throw new RemoteException(); //Remainder of class definition A method can declare that it throws more than one exception, in which case the exceptions are declared in a list separated by commas. For example, the following method declares that it throws a RemoteException and an InsufficientFundsException:

import java.io.*; public class classname public void withdraw(double amount)throws RemoteException, InsufficientFundsException // Method implementation //Remainder of class definition 16.6 finally Keyword The finally keyword is used to create a block of code that follows a try block. A finally block of code always executes, whether or not an exception has occurred. A finally block appears at the end of the catch blocks and has the following syntax: try //Protected code catch(exceptiontype1 e1) catch(exceptiontype2 e2) catch(exceptiontype3 e3) finally //The finally block always executes. Example public class ExcepTest public static void main(string args[]) int a[] = new int[2]; try System.out.println("Access element three :" + a[3]); catch(arrayindexoutofboundsexception e) System.out.println("Exception thrown :" + e); finally a[0] = 6; System.out.println("First element value: " +a[0]); System.out.println("The finally statement is executed"); This would produce following result:

Exception thrown :java.lang.arrayindexoutofboundsexception: 3 First element value: 6 The finally statement is executed Note the following: A catch clause cannot exist without a try statement. It is not compulsory to have finally clauses when ever a try/catch block is present. The try block cannot be present without either catch clause or finally clause.