3-Jun-16 Simple Java I/O Part I General Principles.

Slides:



Advertisements
Similar presentations
A Guide to Advanced Java Faculty:Nguyen Ngoc Tu. 2 Operating System Application #1 Application #2 Java Virtual Machine #1 Local Memory Shared Memory Threads.
Advertisements

1 Streams and Input/Output Files Part 2. 2 Files and Exceptions When creating files and performing I/O operations on them, the systems generates errors.
25-Aug-14 Simple Java I/O Part I General Principles.
Introduction to Java 2 Programming Lecture 7 IO, Files, and URLs.
Lecture 15: I/O and Parsing
The Package Statement Group related interfaces and classes together Purpose: encapsulation and reduces name conflicts –private package classes not visible.
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.
Streams Dwight Deugo Nesa Matic Portions of the notes for this lecture include excerpts from.
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.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 12 File Input and Output.
File input and output. Interactive vs. file I/O All of the programs we have seen or written thus far have assumed interaction with a user, who types in.
Simple Java I/O Part I General Principles. 2 Streams All modern I/O is stream-based A stream is a connection to a source of data or to a destination for.
11-Jun-15 Exceptions. 2 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.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 12  File Input and Output Stream Classes Text Input and Output.
Chapter 91 Streams and File I/O Chapter 9. 2 Announcements Project 5 due last night Project 6 assigned Exam 2 –Wed., March 21, 7:00 – 8:00 pm, LILY 1105.
16-Jun-15 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.
Files and Streams CS 21a Chapter 11 of Horstmann.
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.
21-Jun-15 Simple Text I/O. java.util.Scanner Java finally has a fairly simple way to read input First, you must create a Scanner object To read from the.
22-Jun-15 Introduction to Primitives. 2 Overview Today we will discuss: The eight primitive types, especially int and double Declaring the types of variables.
26-Jun-15 Simple Text I/O. java.util.Scanner Java finally has a fairly simple way to read input First, you must create a Scanner object To read from the.
1 Text File I/O Overview l I/O streams l Opening a text file for reading l Reading a text file l Closing a stream l Reading numbers from a text file l.
Slides prepared by Rose Williams, Binghamton University Chapter 10 File I/O.
Chapter 91 Streams and File I/O Chapter 9. 2 Reminders Project 6 released: due Nov 10:30 pm Project 4 regrades due by midnight tonight Discussion.
1 Streams Overview l I/O streams l Opening a text file for reading l Reading a text file l Closing a stream l Reading numbers from a text file l Writing.
CS102--Object Oriented Programming Lecture 14: – File I/O BufferedReader The File class Write to /read from Binary files Copyright © 2008 Xiaoyan Li.
Chapter 91 Streams and File I/O CS-180 Recitation-03/07/2008.
Slides prepared by Rose Williams, Binghamton University Chapter 10 File I/O.
Lecture 30 Streams and File I/O COMP1681 / SE15 Introduction to Programming.
13-Jul-15 Simple Java I/O Part I General Principles.
15-Jul-15 Simple Java I/O Part I General Principles.
Chapter 12 File Input and Output. Topics Stream Classes Files Text Input and Output JFileChooser for GUI programs Binary files.
Streams and File I/O Chapter 14. I/O Overview I/O = Input/Output In this context it is input to and output from programs Input can be from keyboard or.
Introduction to Java Appendix A. Appendix A: Introduction to Java2 Chapter Objectives To understand the essentials of object-oriented programming in Java.
Slides prepared by Rose Williams, Binghamton University Chapter 10 File I/O.
Stream: an object that either delivers data to its destination (screen, file, etc.) or that takes data from a source (keyboard, file, etc.) –it acts as.
Input / Output Chapter 13.  We use files all the time  Programs are files  Documents are files  We want them to be “permanent”  To last beyond execution.
Prepared by : A.Alzubair Hassan Kassala university Dept. Computer Science Lecture 2 I/O Streams 1.
Streams Reading: 2 nd Ed: , rd Ed: 11.1, 19.1, 19.4
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: An Introduction to Problem Solving & Programming, 5 th Ed. By Walter Savitch and Frank Carrano. ISBN © 2008 Pearson Education, Inc., Upper.
Java I/O Writing and Reading Objects to File Serialization.
1 Recitation 8. 2 Outline Goals of this recitation: 1.Learn about loading files 2.Learn about command line arguments 3.Review of Exceptions.
1 Week 12 l Overview of Streams and File I/O l Text File I/O Streams and File I/O.
Chapter 9-Text File I/O. Overview n Text File I/O and Streams n Writing to a file. n Reading from a file. n Parsing and tokenizing. n Random Access n.
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.
Streams and File I/O Chapter 9. Outline Overview of Streams and File I/O Text-File I/O Using the File Class Basic Binary-File I/O Object I/O with Object.
Lecture 5 I/O and Parsing
Chapter 10 Text Files Section 10.2 Slides prepared by Rose Williams, Binghamton University Kenrick Mock, University of Alaska Anchorage.
CIS Intro to JAVA Lecture Notes Set 6 2-June-05.
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.
Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE.
ICS3U_FileIO.ppt File Input/Output (I/O)‏ ICS3U_FileIO.ppt File I/O Declare a file object File myFile = new File("billy.txt"); a file object whose name.
JAVA: An Introduction to Problem Solving & Programming, 6 th Ed. By Walter Savitch ISBN © 2012 Pearson Education, Inc., Upper Saddle River,
Simple Java I/O Part I General Principles. Streams All modern I/O is stream-based A stream is a connection to a source of data or to a destination for.
Lecture 8: I/O Streams types of I/O streams Chaining Streams
Part I General Principles
CMSC 202 Text File I/O.
Objectives You should be able to describe: Interactive Keyboard Input
University of Central Florida COP 3330 Object Oriented Programming
I/O Basics.
Part I General Principles
Part I General Principles
Streams and File I/O Chapter 9 Chapter 9.
Streams and File I/O Chapter 14.
Chapter 12 File Input and Output
CSS 161: Fundamentals of Computing
Introduction to Primitives
File Input and Output.
Exceptions 10-May-19.
Presentation transcript:

3-Jun-16 Simple Java I/O Part I General Principles

2 Prologue “They say you can hold seven plus or minus two pieces of information in your mind. I can’t remember how to open files in Java. I’ve written chapters on it. I’ve done it a bunch of times, but it’s too many steps. And when I actually analyze it, I realize these are just silly design decisions that they made. Even if they insisted on using the Decorator pattern in java.io, they should have had a convenience constructor for opening files simply. Because we open files all the time, but nobody can remember how. It is too much information to hold in your mind.” —Bruce Eckel, author of Thinking In Java

3 Streams All modern I/O is stream-based A stream is a connection to a source of data or to a destination for data (sometimes both) An input stream may be associated with the keyboard An input stream or an output stream may be associated with a file Different streams have different characteristics: A file has a definite length, and therefore an end Keyboard input has no specific end

4 How to do I/O import java.io.*; Open the stream Use the stream (read, write, or both) Close the stream

5 Why Java I/O is hard Java I/O is very powerful, with an overwhelming number of options Any given kind of I/O is not particularly difficult The trick is to find your way through the maze of possibilities open use close

6 Opening a stream There is data external to your program that you want to get, or you want to put data somewhere outside your program When you open a stream, you are making a connection to that external place Once the connection is made, you forget about the external place and just use the stream open use close

7 Example of opening a stream A FileReader is a used to connect to a file that will be used for input: FileReader fileReader = new FileReader(fileName); The fileName specifies where the (external) file is to be found You never use fileName again; instead, you use fileReader open use close

8 Using a stream Some streams can be used only for input, others only for output, still others for both Using a stream means doing input from it or output to it But it’s not usually that simple--you need to manipulate the data in some way as it comes in or goes out open use close

9 Example of using a stream int charAsInt; charAsInt = fileReader.read( ); The fileReader.read() method reads one character and returns it as an integer, or -1 if there are no more characters to read The meaning of the integer depends on the file encoding (ASCII, Unicode, other) You can cast from int to char : char ch = (char)fileReader.read( ); open use close

10 Manipulating the input data Reading characters as integers isn’t usually what you want to do A BufferedReader will convert integers to characters; it can also read whole lines The constructor for BufferedReader takes a FileReader parameter: BufferedReader bufferedReader = new BufferedReader(fileReader); open use close

11 Reading lines String s; s = bufferedReader.readLine( ); A BufferedReader will return null if there is nothing more to read open use close

12 Closing A stream is an expensive resource There is a limit on the number of streams that you can have open at one time You should not have more than one stream open on the same file You must close a stream before you can open it again Always close your streams! Java will normally close your streams for you when your program ends, but it isn’t good style to depend on this open use close

3-Jun-16 Simple Java I/O Part II LineReader and LineWriter

14 Text files Text (.txt ) files are the simplest kind of files Text files can be used by many different programs Formatted text files (such as.doc files) also contain binary formatting information Only programs that “know the secret code” can make sense of formatted text files Compilers, in general, work only with text

15 My LineReader class class LineReader { BufferedReader bufferedReader; LineReader(String fileName) {...} String readLine( ) {...} void close( ) {...} }

16 Basics of the LineReader constructor Create a FileReader for the named file: FileReader fileReader = new FileReader(fileName); Use it as input to a BufferedReader : BufferedReader bufferedReader = new BufferedReader(fileReader); Use the BufferedReader ; but first, we need to catch possible Exceptions

17 The full LineReader constructor LineReader(String fileName) { FileReader fileReader = null; try { fileReader = new FileReader(fileName); } catch (FileNotFoundException e) { System.err.println ("LineReader can't find input file: " + fileName); e.printStackTrace( ); } bufferedReader = new BufferedReader(fileReader); }

18 readLine String readLine( ) { try { return bufferedReader.readLine( ); } catch(IOException e) { e.printStackTrace( ); } return null; }

19 close void close() { try { bufferedReader.close( ); } catch(IOException e) { } }

20 How did I figure that out? I wanted to read lines from a file I thought there might be a suitable readSomething method, so I went to the API Index Note: Capital letters are all alphabetized before lowercase in the Index I found a readLine method in several classes; the most promising was the BufferedReader class The constructor for BufferedReader takes a Reader as an argument Reader is an abstract class, but it has several implementations, including InputStreamReader FileReader is a subclass of InputStreamReader There is a constructor for FileReader that takes as its argument a ( String ) file name

21 The LineWriter class class LineWriter { PrintWriter printWriter; LineWriter(String fileName) {...} void writeLine(String line) {...} void close( ) {...} }

22 The constructor for LineWriter LineWriter(String fileName) { try { printWriter = new PrintWriter( new FileOutputStream(fileName), true); } catch(Exception e) { System.err.println("LineWriter can't " + "use output file: " + fileName); }

23 Flushing the buffer When you put information into a buffered output stream, it goes into a buffer The buffer may or may not be written out right away If your program crashes, you may not know how far it got before it crashed Flushing the buffer forces the information to be written out

24 PrintWriter Buffers are automatically flushed when the program ends normally Usually it is your responsibility to flush buffers if the program does not end normally PrintWriter can do the flushing for you public PrintWriter(OutputStream out, boolean autoFlush)

25 writeLine void writeLine(String line) { printWriter.println(line); }

26 close void close( ) { printWriter.flush( ); try { printWriter.close( ); } catch(Exception e) { } }

3-Jun-16 Simple Java I/O Part III JFileChooser s

28 About JFileChooser s The JFileChooser class displays a window from which the user can select a file The dialog window is modal--the application cannot continue until it is closed Applets cannot use a JFileChooser, because applets cannot access files

29 Typical JFileChooser window

30 JFileChooser constructors JFileChooser() Creates a JFileChooser starting from the user’s directory JFileChooser(File currentDirectory ) Constructs a JFileChooser using the given File as the path JFileChooser(String currentDirectoryPath ) Constructs a JFileChooser using the given path

31 Useful JFileChooser methods I int showOpenDialog(Component enclosingJFrame ); Asks for a file to read; returns a flag (see below) int showSaveDialog(Component enclosingJFrame ); Asks where to save a file; returns a flag (see below) Returned flag value may be: JFileChooser. APPROVE_OPTION JFileChooser. CANCEL_OPTION JFileChooser. ERROR_OPTION

32 Useful JFileChooser methods II File getSelectedFile() showOpenDialog and showSaveDialog return a flag telling what happened, but don’t return the selected file After we return from one of these methods, we have to ask the JFileChooser what file was selected If we are saving a file, the File may not actually exist yet— that’s OK, we still have a File object we can use

33 Using a File Assuming that we have successfully selected a File : File file = chooser.getSelectedFile(); if (file != null) { String fileName = file.getCanonicalPath(); FileReader fileReader = new FileReader(fileName); BufferedReader reader = new BufferedReader(fileReader); } File file = chooser.getSelectedFile(); if (file != null) { String fileName = file.getCanonicalPath(); FileOutputStream stream = new FileOutputStream(fileName); writer = new PrintWriter(stream, true); }

3-Jun-16 Simple Java I/O Part IV Scanner and printf

java.util.Scanner Java finally has a fairly simple way to read input First, you must create a Scanner object To read from the keyboard ( System.in ), do: Scanner scanner = new Scanner(System.in); To read from a file, do: File myFile = new File("myFileName.txt"); Scanner scanner = new Scanner(myFile); You have to be prepared to handle a FileNotFound exception You can even “read” from a String: Scanner scanner = new Scanner(myString); This can be handy for parsing a string

Using the Scanner First, you should make sure there is something to scan scanner.hasNext()  boolean You wouldn’t use this when reading from the keyboard You can read a line at a time scanner.nextLine()  String Or, you can read one “token” at a time A token is any sequence of nonwhitespace characters scanner.next ()  String You must be prepared to deal with exceptions Eclipse will tell you what you need to do nextLine and next return Strings, which you can convert to numbers or other types if you like There are also methods to check for and return primitives directly

Scanning for primitives You can read in and convert text to primitives: boolean b = sc.nextBoolean(); byte by = sc.nextByte(); short sh = sc.nextShort(); int i = sc.nextInt(); long l = sc.nextLong(); float f = sc.nextFloat(); double d = sc.nextDouble(); And test if you have something to read: hasNextBoolean() hasNextByte() hasNextShort() hasNextInt() hasNextLong() hasNextFloat() hasNextDouble()

Formatted output Java 5 has a printf method, similar to that of C Each format code is % width code Some format codes are s for strings, d for integers, f for floating point numbers Example: double pi = Math.PI; System.out.printf("%8s %-8s %6d %-6d %8f %-8.2f :) \n", "abc", "def", 123, 456, pi, pi); System.out.printf("%8s %-8s %6d %-6d", "abcdef", "ghijkl", 12345, 6789); Output: abc def :) abcdef ghijkl

3-Jun-16 Simple Java I/O Part V Serialization

40 Serialization You can also read and write objects to files Object I/O goes by the awkward name of serialization Serialization in other languages can be very difficult, because objects may contain references to other objects Java makes serialization (almost) easy

41 Conditions for serializability If an object is to be serialized: The class must be declared as public The class must implement Serializable The class must have a no-argument constructor All fields of the class must be serializable: either primitive types or serializable objects

42 Implementing Serializable To “implement” an interface means to define all the methods declared by that interface, but... The Serializable interface does not define any methods! Question: What possible use is there for an interface that does not declare any methods? Answer: Serializable is used as flag to tell Java it needs to do extra work with this class

43 Writing objects to a file ObjectOutputStream objectOut = new ObjectOutputStream( new BufferedOutputStream( new FileOutputStream(fileName))); objectOut.writeObject(serializableObject); objectOut.close( );

44 Reading objects from a file ObjectInputStream objectIn = new ObjectInputStream( new BufferedInputStream( new FileInputStream(fileName))); myObject = (itsType)objectIn.readObject( ); objectIn.close( );

45 What have I left out? Encrypted files, compressed files, files sent over internet connections,... Exceptions! All I/O involves Exceptions! try { statements involving I/O } catch (IOException e) { e.printStackTrace ( ); }

46 The End “There is no reason anyone would want a computer in their home.” --Ken Olson, President/founder of Digital Equipment Corp., 1977 “I think there is a world market for maybe five computers.” --Thomas Watson Chairman of IBM,| 1943