13
Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE OF SCIENCE AND TECHNOLOGY (CST) KHANYOUNIS- PALESTINE

Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Embed Size (px)

Citation preview

Page 1: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Computer Programming 2

Lecture 10:File streaming (1)

Prepared & Presented by: Mahmoud Rafeek

Alfarra

MINISTRY OF EDUCATION & HIGHER EDUCATIONCOLLEGE OF SCIENCE AND TECHNOLOGY (CST)KHANYOUNIS- PALESTINE

Page 2: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

و من يتِق� الله ...

عليك بتقوى الله ان كنت غافال يأتيك باألرزاق من حيث ال تدريفكيف تخاف الفقر والله رازقا

فقد رزق الطير والحوت في البحر ومن ظن أن الرزق يأتي بقوة ما أكل العصفور شيئا مع النسرتزول عن الدنيا فإنك ال تدري

إذا جن عليك الليل هل تعيش إلى الفجرفكم من صحيح مات من غير علة

وكم من سقيم عاش حينا من الدهروكم من فتى أمسى وأصبح ضاحكا

وأكفانه في الغيب تنسج وهو ال يدريفمن عاش ألفا وألفين

فال بد من يوم يسير إلى القبرMahmoud Rafeek Alfarra

2

Downloaded from http://staff.cst.ps/mfarraDownloaded from http://staff.cst.ps/mfarra

قال الشاعر عن التقـوى:

Page 3: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Streams

All modern I/O is stream-basedA 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

keyboardAn 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

Page 4: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

How to do I/O

import java.io.*;

Open the streamUse the stream (read, write, or both)Close the stream

Page 5: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

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

Page 6: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

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

Page 7: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

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

Page 8: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

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

Page 9: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Example of using a stream

int ch;ch = 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)

Page 10: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

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);

Page 11: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Reading lines

String s;s = bufferedReader.readLine( );

A BufferedReader will return null if there is nothing more to read

Page 12: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Closing

A stream is an expensive resourceThere is a limit on the number of streams

that you can have open at one timeYou should not have more than one stream

open on the same fileYou must close a stream before you can open

it againAlways close your streams!

Page 13: Computer Programming 2 Lecture 10: File streaming (1) Prepared & Presented by: Mahmoud Rafeek Alfarra MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE

Next LectureNext Lecture… …

Mahmoud Rafeek AlfarraDownloaded from Downloaded from http://staff.cst.ps/mfarra

13

I/OContinue