Exceptions and Input/Output Operations

Slides:



Advertisements
Similar presentations
Chapter 17 Failures and exceptions. This chapter discusses n Failure. n The meaning of system failure. n Causes of failure. n Handling failure. n Exception.
Advertisements

Java File I/O. File I/O is important! Being able to write and read from files is necessary and is also one common practice of a programmer. Examples include.
CS102--Object Oriented Programming
COMP 121 Week 5: Exceptions and Exception Handling.
© 2004 Pearson Addison-Wesley. All rights reserved10-1 Chapter 10 : Exceptions Intermediate Java Programming Summer 2007.
Java I/O Java I/O is based on input streams and output streams. All input and output are defined in the Java IO package. 1.
CS 116 OBJECT ORIENTED PROGRAMMING II LECTURE 10 GEORGE KOUTSOGIANNAKIS Copyright: 2014 Illinois Institute of Technology/ George Koutsogiannakis 1.
Slides prepared by Rose Williams, Binghamton University ICS201 Exception Handling University of Hail College of Computer Science and Engineering Department.
Exceptions Briana B. Morrison CSE 1302C Spring 2010.
Text File I/O. Text Files and Binary Files Files that are designed to be read by human beings, and that can be read or written with an editor are called.
File I/O and Exceptions File I/O Exceptions Throwing Exceptions Try statement and catch / finally clauses Checked and unchecked exceptions Throws clause.
EXCEPTIONS Def: An exception is a run-time error. Examples include: attempting to divide by zero, or manipulate invalid data.
Exceptions in Java Fawzi Emad Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
Exceptions. Errors and Exceptions An error is a bug in your program –dividing by zero –going outside the bounds of an array –trying to use a null reference.
Chapter 8: Exceptions and I/O Streams Copyright 2002, Matthew Evett. These slides are based on slides copyrighted by John Lewis and William Loftus, 2002,
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
CS102--Object Oriented Programming Lecture 14: – File I/O BufferedReader The File class Write to /read from Binary files Copyright © 2008 Xiaoyan Li.
Slides prepared by Rose Williams, Binghamton University Chapter 10 File I/O.
Exceptions. Many problems in code are handled when the code is compiled, but not all Some are impossible to catch before the program is run  Must run.
Input/Ouput and Exception Handling. 2 Exceptions  An exception is an object that describes an unusual or erroneous situation  Exceptions are thrown.
Java Software Solutions Foundations of Program Design Sixth Edition
Preventing and Correcting Errors
10-1 Exceptions An exception is an object that describes an unusual or erroneous situation Exceptions are thrown by a program, and may be caught and handled.
Chapter 9 1 Chapter 9 – Part 1 l Overview of Streams and File I/O l Text File I/O l Binary File I/O l File Objects and File Names Streams and File I/O.
Java Programming: Guided Learning with Early Objects
Java I/O Writing and Reading Objects to File Serialization.
Chapter 10 Exceptions. Chapter Scope The purpose of exceptions Exception messages The call stack trace The try-catch statement Exception propagation The.
Java I/O Java I/O is based on input streams and output streams. All input and output are defined in the Java IO package. 1.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
1 Week 12 l Overview of Streams and File I/O l Text File I/O Streams and File I/O.
Exceptions in Java. Exceptions An exception is an object describing an unusual or erroneous situation Exceptions are thrown by a program, and may be caught.
Strings and Text File I/O (and Exception Handling) Corresponds with Chapters 8 and 17.
© 2004 Pearson Addison-Wesley. All rights reserved April 24, 2006 Exceptions (part 2) ComS 207: Programming I (in Java) Iowa State University, SPRING 2006.
CMSC 202 Text File I/O. Aug 8, Text Files and Binary Files Files that are designed to be read by human beings, and that can be read or written with.
Fall 2002CS 150: Intro. to Computing1 Streams and File I/O (That is, Input/Output) OR How you read data from files and write data to files.
CS 116 OBJECT ORIENTED PROGRAMMING II LECTURE 11 GEORGE KOUTSOGIANNAKIS Copyright: 2015 / Illinois Institute of Technology/George Koutsogiannakis 1.
Exceptions and Assertions Chapter 15 – CSCI 1302.
Chapter 11 Exceptions and Input/Output Operations.
Chapter 10 Exceptions 5 TH EDITION Lewis & Loftus java Software Solutions Foundations of Program Design © 2007 Pearson Addison-Wesley. All rights reserved.
CS 116 OBJECT ORIENTED PROGRAMMING II LECTURE 12 GEORGE KOUTSOGIANNAKIS Copyright: 2015 Illinois Institute of Technology/ George Koutsogiannakis 1.
I/O Basics 26 January Aside from print( ) and println( ), none of the I/O methods have been used significantly. The reason is simple: most real.
© 2006 Pearson Addison-Wesley. All rights reserved 1-1 Chapter 1 Review of Java Fundamentals.
Lecture10 Exception Handling Jaeki Song. Introduction Categories of errors –Compilation error The rules of language have not been followed –Runtime error.
© 2004 Pearson Addison-Wesley. All rights reserved December 5, 2007 I/O Exceptions & Working with Files ComS 207: Programming I (in Java) Iowa State University,
CSE 1020: Exceptions and A multiclass application Mark Shtern 1-1.
ECE122 L23: Exceptions December 6, 2007 ECE 122 Engineering Problem Solving with Java Lecture 24 Exceptions.
CS 116 Object Oriented Programming II Lecture 11 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
1 CSE 331 Memento Pattern and Serialization slides created by Marty Stepp based on materials by M. Ernst, S. Reges, D. Notkin, R. Mercer, Wikipedia
CS 116 Object Oriented Programming II Lecture 10 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
OBJECT ORIENTED PROGRAMMING II LECTURE 21 GEORGE KOUTSOGIANNAKIS
OBJECT ORIENTED PROGRAMMING II LECTURE 10 GEORGE KOUTSOGIANNAKIS
10 Exceptions Software Solutions Lewis & Loftus java 5TH EDITION
I/O Basics.
CS 116 Object Oriented Programming II
Exception Handling Chapter 9.
Exceptions Exception handling is an important aspect of object-oriented design Chapter 10 focuses on the purpose of exceptions exception messages the.
CSS 161: Fundamentals of Computing
Abdulmotaleb El Saddik University of Ottawa
OBJECT ORIENTED PROGRAMMING II LECTURE 22 GEORGE KOUTSOGIANNAKIS
OBJECT ORIENTED PROGRAMMING II LECTURE 20 GEORGE KOUTSOGIANNAKIS
I/O Exceptions & Working with Files
Presentation transcript:

Exceptions and Input/Output Operations Chapter 11 Exceptions and Input/Output Operations

Topics Exception Handling Using try and catch Blocks Catching Multiple Exceptions User-Defined Exceptions The java.io Package Parsing a String using Scanner Reading Text Files Using Scanner Writing and Appending to Text Files Reading Structured Text Files Reading and Writing Objects to a File

Exceptions Illegal operations at run time can generate an exception. For example, we have seen these exceptions: ArithmeticException NullPointerException InputMismatchException NumberFormatException ArrayIndexOutOfBoundsException

Exceptions An exception is an object that describes an unusual or erroneous situation Exceptions are thrown by a program, and may be caught and handled by another part of the program A program can be separated into a normal execution flow and an exception execution flow An error is also represented as an object in Java, but usually represents a unrecoverable situation and should not be caught

Handling Exceptions In a program without a Graphical User Interface, exceptions cause the program to terminate. With this code that attempts to read an int: String s = JOptionPane.showInputDialog( null, "Enter an integer" ); int n = Integer.parseInt( s ); If the user enters a, we get a NumberFormatException: See Example 11.1 DialogBoxInput.java

Exception Handling Java has a predefined set of exceptions and errors that can occur during execution A program can deal with an exception in one of three ways: ignore it handle it where it occurs handle it an another place in the program The manner in which an exception is processed is an important design consideration

Exception Handling If an exception is ignored by the program, the program will terminate abnormally and produce an appropriate message The message includes a call stack trace that: indicates the line on which the exception occurred shows the method call trail that lead to the attempted execution of the offending line

Handling Exceptions We don't want invalid user input to terminate our programs! It is better to detect the problem and reprompt the user for the input. Java allows us to intercept and handle some of these exceptions using try and catch blocks. Inside the try block, we put the code that might generate an exception. Inside catch blocks, we put the code to handle any exceptions that could be generated.

Minimum try/catch Syntax { // code that might generate an exception } catch( ExceptionClass exceptionObjRef ) // code to recover from the exception If an exception occurs in the try block, control jumps immediately to the catch block. No further instructions in the try block are executed. If no exceptions are generated in the try block, the catch block is not executed.

Exception Class Hierarchy The ExceptionClass parameter to the catch block can be any of these exceptions. The Exception class, RuntimeException class, and their subclasses are in the java.lang package. The IOException class and its subclasses are in the java.io package.

Checked and Unchecked Exceptions Java distinguishes between two types of exceptions: Unchecked exceptions are those that are subclasses of Error or RuntimeException It is not mandatory to use try and catch blocks to handle these exceptions. Checked exceptions are any other exceptions. Code that might generate a checked exception must be put inside a try block or the method must acknowledge that the exception may occur by using a throws clause in the method header. Otherwise, the compiler will generate an error.

Checked Exceptions An exception is either checked or unchecked A checked exception either must be caught by a method, or must be listed in the throws clause of any method that may throw or propagate it A throws clause is appended to the method header The compiler will issue an error if a checked exception is not caught or asserted in a throws clause

Unchecked Exceptions An unchecked exception does not require explicit handling, though it could be processed that way The only unchecked exceptions in Java are objects of type RuntimeException or any of its descendants Errors are similar to RuntimeException and its descendants in that: Errors should not be caught Errors do not require a throws clause

Exception Class Methods Inside the catch block, you can call any of these methods of the Exception class: Return value Method name and argument list String getMessage( ) returns a message indicating the cause of the exception toString( ) returns a String containing the exception class name and a message indicating the cause of the exception void printStackTrace( ) prints the line number of the code that caused the exception along with the sequence of method calls leading up to the exception

Catching a NumberFormatException int n = 0; // declare and initialize variable String s = JOptionPane.showInputDialog( null, "Enter an integer" ); try { n = Integer.parseInt( s ); System.out.println( "You entered " + n ); } catch ( NumberFormatException nfe ) System.out.println( "Incompatible data." ); See Example 11.2 DialogBoxInput.java

Initializing Variables for try/catch Notice that we declare and initialize the input variable (n) before we enter the try block. If we do not initialize the variable and then try to access it after the try/catch blocks, we will receive the following compiler error: variable n might not have been initialized  The error indicates that the only place where n is assigned a value is in the try block. If an exception occurs, the try block will be interrupted and we might not ever assign n a value. Initializing the value before entering the try block solves this problem.

Recovering From an Exception The previous code simply printed a message when the exception occurred. To continue processing, reprompt the user for good input by putting the try and catch blocks inside a do/while loop, as shown on the next slide -> See Example 11.3 DialogBoxInput.java

int n = 0; boolean goodInput = false; // flag variable String s = JOptionPane.showInputDialog( null, "Enter an integer" ); do { try n = Integer.parseInt( s ); goodInput = true; // executed if no exception } catch ( NumberFormatException nfe ) s = JOptionPane.showInputDialog( null, s + " is not an integer. " + "Enter an integer" ); } while ( ! goodInput );

SOFTWARE ENGINEERING TIP Write code to catch and handle exceptions generated by invalid user input. Always try to write code that is user-friendly. Although the methods of the Exception class are good debugging tools, they are not necessarily appropriate to use in the final version of a program.

Catching Multiple Exceptions If the code in the try block might generate multiple, different exceptions, we can provide multiple catch blocks to handle each possible exception. When an exception is generated, the JVM searches the catch blocks in order. The first catch block with a parameter that matches the exception thrown will execute; any remaining catch blocks will be skipped.

catch Block Order An exception will match a catch block with a parameter that names any of its superclasses. For example, a NumberFormatException will match a catch block with a RuntimeException parameter. All exceptions will match a catch block with an Exception parameter. Thus, when coding several catch blocks, arrange the catch blocks with the specialized exceptions first, followed by more general exceptions.

Exception Propagation An exception can be handled at a higher level if it is not appropriate to handle it where it occurs Exceptions propagate up through the method calling hierarchy until they are caught and handled or until they reach the level of the main method A try block that contains a call to a method in which an exception is thrown can be used to catch that exception

The finally Block Optionally, you can follow the catch blocks with a finally block. The finally block will be executed whether or not an exception occurs. Thus: if an exception occurs, the finally block will be executed when the appropriate catch block finishes executing. if no exception occurs, the finally block will be executed when the try block finishes. For example, a finally block might be used to close an open file. We demonstrate this later.

Full try/catch/finally Syntax { // code that might generate an exception } catch( Exception1Class e1 ) // code to handle an Exception1Class exception … catch( ExceptionNClass eN ) // code to handle an ExceptionNClass exception finally // code to execute whether or not an exception occurs Full try/catch/finally Syntax

Catching Multiple Exceptions We can write a program that catches several exceptions. For example, for a division operation, we can prompt the user for a divisor. If the input is not an integer, we catch the NumberFormatException and reprompt the user with an appropriate message. If the input is 0, we catch an ArithmeticException when we attempt to divide by 0, and reprompt the user with an appropriate message. See Example 11.4 Divider.java

Example 11.4 // declare and initialize variables int divisor = 0; int quotient = 0; int dividend = 100; // initialize flag variable boolean goodInput = false; // prompt for input String s = JOptionPane.showInputDialog( null, "Enter an integer divisor" ); do { try // attempt to convert the String to an int divisor = Integer.parseInt( s ); // attempt the division quotient = dividend / divisor; goodInput = true; } catch ( NumberFormatException nfe ) s = JOptionPane.showInputDialog( null, s + " is not an integer. “ + "Enter an integer divisor" ); catch ( ArithmeticException ae ) s = JOptionPane.showInputDialog( null, "Divisor cannot be 0. “ + "Enter an integer divisor" ); } while ( !goodInput ); JOptionPane.showMessageDialog( null, "The result is " + quotient );

User-Defined Exceptions We can design our own exception class. Suppose we want to design a class encapsulating email addresses (EmailAddress class). For simplicity, we say that a legal email address is a String containing the @ character. Our EmailAddress constructor will throw an exception if its email address argument is illegal.   To do this, we design an exception class named IllegalEmailException.

User-Defined Exception Java has an IllegalArgumentException class, so our IllegalEmailException class can be a subclass of the IllegalArgumentException class. By extending the IllegalArgumentException class: we inherit the functionality of an exception class, which simplifies our coding of the exception we can easily associate a specific error message with the exception

Extending an Existing Exception We need to code only the constructor, which accepts the error message as a String. General pattern: public class ExceptionName extends ExistingExceptionClassName { public ExceptionName( String message ) super( message ); } See Example 11.5 IllegalEmailException.java

Example 11.5 public class IllegalEmailException extends IllegalArgumentException { public IllegalEmailException( String message ) super( message ); }

The throw Statement Exceptions are thrown using the throw statement Usually a throw statement is executed inside an if statement that evaluates a condition to see if the exception should be thrown

Throwing an Exception The pattern for a method that throws a user-defined exception is:   accessModifier returnType methodName( parameters ) throws ExceptionName { if ( parameter list is legal ) process the parameter list else throw new ExceptionName( "Message here" ); } The message passed to the constructor identifies the error detected. In a client's catch block, the getMessage method retrieves that message. See Examples 11.6 EmailAddress.java & 11.7 EmailChecker.java

Example 11.6 public class EmailAddress { public static final char AT_SIGN = '@'; private String email; public EmailAddress( String newEmail ) throws IllegalEmailException if ( newEmail.indexOf( AT_SIGN ) != - 1 ) email = newEmail; else throw new IllegalEmailException ( "Email address does not contain " + AT_SIGN ); } public String getHost( ) int index = email.indexOf( AT_SIGN ); return email.substring( index + 1, email.length( ) );

Example 11.7 public class EmailChecker { public static void main( String [ ] args ) Scanner scan = new Scanner( System.in ); System.out.print( "Enter your email address > " ); String myEmail = scan.next( ); try EmailAddress address = new EmailAddress( myEmail ); System.out.println( "Your host is " + address.getHost( ) ); } catch( IllegalEmailException iee ) System.out.println( iee.getMessage( ) );

I/O Exceptions Let's examine issues related to exceptions and I/O A stream is a sequence of bytes that flow from a source to a destination In a program, we read information from an input stream and write information to an output stream A program can manage multiple streams simultaneously

Standard I/O There are three standard I/O streams: standard output – defined by System.out standard input – defined by System.in standard error – defined by System.err We use System.out when we execute println statements System.out and System.err typically represent a particular window on the monitor screen System.in typically represents keyboard input, which we've used many times with Scanner objects

The IOException Class Operations performed by some I/O classes may throw an IOException A file might not exist Even if the file exists, a program may not be able to find it The file might not contain the kind of data we expect An IOException is a checked exception

Selected Input Classes in the java.io Package Description InputStream Abstract superclass representing a stream of raw bytes FileInputStream Input stream to read raw bytes of data from files ObjectInputStream Class to read/recover objects from a file written using ObjectOutputStream

Hierarchy for Input Classes

Selected java.io Output Classes Description Writer Abstract superclass for output classes OutputStream Abstract superclass representing an output stream of raw bytes PrintWriter Prints basic data types, Strings, and objects FileOutputStream Output stream for writing raw bytes of data to files ObjectOutputStream Class to write objects to a file

Hierarchy for Output Classes

File Types Java supports two types of files: text files: data is stored as characters binary files: data is stored as raw bytes The type of a file is determined by the classes used to write to the file. To read an existing file, you must know the file's type in order to select the appropriate classes for reading the file.

Reading Text Files In Chapter 6, we read a text file by associating a Scanner object with a File object: Scanner file = new Scanner( new File( “filename.txt” ) ); We added the throws IOException clause to main to avoid handling exceptions that may occur. public static void main( String [] args ) throws IOException But when the file wasn’t found, a FileNotFoundException occurred; the user was given an unfriendly message; and the program terminated. Now that we know how to catch exceptions, we can intercept the FileNotFoundException and give the user a meaningful message.

Opening and Closing an InputStream When we construct an input stream or output stream object, the JVM associates the file name, standard input stream, or standard output stream with our object. This is opening the file. When we are finished with a file, we optionally call the close method to release the resources associated with the file. Return value Method name and argument list void close( ) releases resources associated with an open input stream. Throws an IOException.

Opening and Closing Standard Streams The standard input stream (System.in), the standard output stream (System.out), and the standard error stream (System.err) are open when the program begins. They are intended to stay open and should not be closed.

SOFTWARE ENGINEERING TIP Calling the close method is optional. When the program finishes executing, all the resources of any unclosed files are released. It is good practice to call the close method, however, especially if you will be opening a number of files (or opening the same file multiple times.) Do not close the standard input, output, or error devices, however. They are intended to remain open.

Exceptions While Reading from a File We can catch this exception: FileNotFoundException thrown by the Scanner constructor if the filename is not found when opening the file We do not expect these exceptions to occur, so we will catch them as subclasses of IOException, and print the stack trace. InputMismatchException if the input does not match the expected data type. (The next method does not throw this exception, so we don’t need to catch this exception). NoSuchElementException if we attempt to read beyond the end of the file. IllegalStateException if we attempt to read after calling the close method. See Example 11.8 ReadTextFile.java

Writing to Text Files Several situations can exist: the file does not exist the file exists and we want to replace the current contents the file exists and we want to append to the current contents We specify whether we want to replace the contents or append to the current contents when we construct our FileOutputStream object.

Writing Text Files Previously, we explored the use of the Scanner class to read input from a text file Let's now examine other classes that let us write data to a text file The FileWriter class represents a text output file, but with minimal support for manipulating data Therefore, we also rely on PrintStream objects, which have print and println methods defined for them

Writing Text Files Finally, we'll also use the PrintWriter class for advanced internationalization and error checking We build the class that represents the output file by combining these classes appropriately Output streams should be closed explicitly

Writing Primitive Types to Text Files FileOutputStream, a subclass of the OutputStream class, is designed to write a stream of bytes to a file. The PrintWriter class is designed for converting primitive data types to characters and writing them to a text file. print method, writes data to the file without a newline println method, writes data to the file, then adds a newline

Constructors for Writing to Text Files Class Constructor FileOutputStream FileOutputStream( String filename, boolean mode ) constructs a FileOutputStream object from a String representing the name of a file. If the file does not exist, it is created. If mode is false, the current contents of the file, if any, will be replaced. If mode is true, writing will append data to the end of the file. Throws a FileNotFoundException. PrintWriter PrintWriter( OutputStream os ) constructs a PrintWriter object from an OutputStream object

Methods of the PrintWriter Class See Example 11.9 WriteGradeFile.java and Example 11.10 AppendGradeFile.java Return value Method name and argument list void Void print( int i ) print( double d ) print( String s ) … println( int i ) println( double d ) println( String s ) writes the argument to the text file close( ) releases resources allocated to the PrintWriter object.

Reading Structured Text Files Some text files are organized into lines that represent a record — a set of data values containing information about an item. The data values are separated by one or more delimiters; that is, a special character or characters that separate one value from the next. As we read the file, we need to parse each line; that is, separate the line into the individual data values called tokens.

Example An airline company could store data in a file where each line represents a flight segment containing the following data: flight number origin airport destination airport number of passengers average ticket price  Such a file could contain the following data: AA123,BWI,SFO,235,239.5 AA200,BOS,JFK,150,89.3 … In this case, the delimiter is a comma.

Using Scanner to Parse Strings The Scanner constructor below accepts a String. We can use any of the Scanner next methods to read tokens from the String. We can use any of the Scanner hasNext methods to determine whether more tokens are available to be read. The default delimiters are the white space characters (space, newline, tab, etc.). Constructor name and argument list Scanner( String source ) constructs a Scanner object that produces tokens from the specified String

Using Scanner to Parse Strings To specify different delimiters, call useDelimiter method: pattern represents a regular expression against which to match sequences of characters using standard characters as well as meta-characters, which have special meanings. We can specify a delimiter consisting of a single character or multiple specific characters as a simple String argument. See Example 11.11 UsingScannerToParseAString.java Return Value Method name and argument list Scanner useDelimiter( String pattern )

Example The file flight.txt contains the following comma-separated flight data on each line: flight number, origin airport, destination airport, number of passengers, average ticket price The FlightRecord class defines instance variables for each flight data value The ReadFlights class reads data from flights.txt, instantiates FlightRecord objects, and adds them to an ArrayList. See Examples 11.12 FlightRecord.java and Example 11.13 ReadFlights.java

The StringTokenizer Class The StringTokenizer class is designed to parse Strings into tokens. StringTokenizer is in the java.util package. When we construct a StringTokenizer object, we specify the delimiters that separate the data we want to tokenize. The default delimiters are the whitespace characters.

Two StringTokenizer Constructors Constructor name and argument list StringTokenizer( String str ) constructs a StringTokenizer object for the specified String using space, tab, carriage return, newline, and form feed as the default delimiters StringTokenizer( String str, String delim ) constructs a StringTokenizer object for the specified String using delim as the delimiters

Useful StringTokenizer Methods Return value Method name and argument list int countTokens( ) returns the number of unretrieved tokens in this object; the count is decremented as tokens are retrieved. String nextToken( ) returns the next token boolean hasMoreTokens( ) returns true if more tokens are available to be retrieved; returns false, otherwise.

Reading and Writing Objects Java also supports writing objects to a file and reading them as objects. This is convenient for two reasons:  We can write these objects directly to a file without having to convert the objects to primitive data types or Strings. We can read the objects directly from a file, without having to read Strings and convert these Strings to primitive data types in order to instantiate objects.   To read objects from a file, the objects must have been written to that file as objects.

Writing Objects to a File To write an object to a file, its class must implement the Serializable interface, which indicates that: the object can be converted to a byte stream to be written to a file that byte stream can be converted back into a copy of the object when read from the file. The Serializable interface has no methods to implement. All we need to do is: import the java.io.Serializable interface add implements Serializable to the class header

The ObjectOutputStream Class The ObjectOutputStream class, coupled with the FileOutputStream class, provide the functionality to write objects to a file. The ObjectOutputStream class provides a convenient way to write objects to a file. Its writeObject method takes one argument: the object to be written.

Constructors for Writing Objects Class Constructor FileOutputStream FileOutputStream( String filename, boolean mode ) creates a FileOutputStream object from a String representing the name of a file. If the file does not exist, it is created. If mode is false, the current contents of the file, if any, will be replaced. If mode is true, writing will append data to the end of the file. Throws a FileNotFoundException. ObjectOutputStream ObjectOutputStream( OutputStream out ) creates an ObjectOutputStream that writes to the OutputStream out. Throws an IOException.

The writeObject Method See Examples 11.15 FlightRecord2.java and Example 11.16 WritingObjects.java Return value Method name and argument list void writeObject( Object o ) writes the object argument to a file. That object must be an instance of a class that implements the Serializable interface. Otherwise, a run-time exception will be generated. Throws an IOException.

Example 11.15 import java.io.Serializable; import java.text.DecimalFormat; public class FlightRecord2 implements Serializable { public static final DecimalFormat MONEY = new DecimalFormat( "$###.00" ); private String flightNumber; // ex. = AA123 private String origin; // origin airport; ex. = BWI private String destination; // destination airport; ex. = SFO private int numPassengers; // number of passengers private double avgTicketPrice; // average ticket price

/** Constructor * @param startFlightNumber flight number * @param startOrigin origin airport * @param startDestination destination airport * @param startNumPassengers number of passengers * @param startAvgTicketPrice average ticket price */ public FlightRecord2( String startFlightNumber, String startOrigin, String startDestination, int startNumPassengers, double startAvgTicketPrice ) { flightNumber = startFlightNumber; origin = startOrigin; destination = startDestination; numPassengers = startNumPassengers; avgTicketPrice = startAvgTicketPrice; } /** toString * @return flight number, origin, destination, number of passengers, and average ticket price */ public String toString( ) return "Flight " + flightNumber + ": from " + origin + " to " + destination + "\n\t" + numPassengers + " passengers" + "; average ticket price: “ + MONEY.format( avgTicketPrice ); // accessors, mutators, and other methods …

Example 11.16 import java.io.FileOutputStream; import java.io.ObjectOutputStream; import java.io.FileNotFoundException; import java.io.IOException; public class WritingObjects { public static void main( String [] args ) // instantiate the objects FlightRecord2 fr1 = new FlightRecord2( "AA31", "BWI", "SFO", 200, 235.9 ); FlightRecord2 fr2 = new FlightRecord2( "CO25", "LAX", "JFK", 225, 419.9 ); FlightRecord2 fr3 = new FlightRecord2( "US57", "IAD", "DEN", 175, 179.5 );

try { FileOutputStream fos = new FileOutputStream ( "objects", false ); // false means we will write to objects ObjectOutputStream oos = new ObjectOutputStream( fos ); // write the objects to the file oos.writeObject( fr1 ); oos.writeObject( fr2 ); oos.writeObject( fr3 ); // release resources associated with the objects file oos.close( ); } catch( FileNotFoundException fnfe ) { System.out.println( "Unable to write to objects" ); } catch( IOException ioe ) { ioe.printStackTrace( ); }

Omitting Data from the File The writeObject method does not write any object fields declared to be static or transient. You can declare a field as transient if you can easily reproduce its value or if its value is 0. Syntax to declare a field as transient: accessModifier transient dataType fieldName Example: private transient double totalRevenue;

SOFTWARE ENGINEERING TIP To save disk space when writing to an object file, declare the class's fields as static or transient, where appropriate.

Reading Objects from a File The ObjectInputStream class, coupled with FileInputStream, provide the functionality to read objects from a file. The readObject method of the ObjectInputStream class is designed to read objects from a file. Because the readObject method returns a generic Object, we must type cast the returned object to the appropriate class. When the end of the file is reached, the readObject method throws an EOFException, so we detect the end of the file when we catch that exception.

Constructors for Reading Objects Class Constructor FileInputStream FileInputStream( String filename ) constructs a FileInputStream object from a String representing the name of a file. Throws a FileNotFoundException. ObjectInputStream ObjectInputStream( InputStream in ) creates an ObjectInputStream from the InputStream in. Throws an IOException.

The readObject Method See Example 11.17 ReadingObjects.java -- we detect reaching the end of the file in the catch block for EOFException we use a finally block to close the file. Return value Method name and argument list Object readObject( ) reads the next object and returns it. The object must be an instance of a class that implements the Serializable interface. When the end of the file is reached, an EOFException is thrown. Also throws an IOException and ClassNotFoundException

Example 11.17 import java.io.FileInputStream; import java.io.ObjectInputStream; import java.io.FileNotFoundException; import java.io.EOFException; import java.io.IOException; public class ReadingObjects { public static void main( String [ ] args ) { try { FileInputStream fis = new FileInputStream( "objects " ); ObjectInputStream ois = new ObjectInputStream( fis ); try { while ( true ) { // read object, type cast returned object to FlightRecord FlightRecord2 temp = ( FlightRecord2 ) ois.readObject( ); // print the FlightRecord2 object read System.out.println( temp ); } } // end inner try block

catch( EOFException eofe ) { System.out.println( "End of the file reached" ); } catch( ClassNotFoundException cnfe ) { System.out.println( cnfe.getMessage( ) ); finally { System.out.println( "Closing file" ); ois.close( ); } // end outer try block catch( FileNotFoundException fnfe ) { System.out.println( "Unable to find objects" ); catch( IOException ioe ) { ioe.printStackTrace( );