1 10/25/06CS150 Introduction to Computer Science 1 Reading from and Writing to Files.

Slides:



Advertisements
Similar presentations
Introduction to C++ September 12, Today’s Agenda Quick Review Check your programs from yesterday Another Simple Program: Adding Two Numbers Rules.
Advertisements

True or false A variable of type char can hold the value 301. ( F )
Computer Skills2 for Scientific Colleges 1 File Processing in C++ Data is stored in files so that it may be retrieved for processing when needed.
1 9/29/06CS150 Introduction to Computer Science 1 Loops Section Page 255.
File I/O. COMP104 Lecture 20 / Slide 2 Using Input/Output Files (Review) * A computer file n is stored secondary storage devices (hard drive, CD) n can.
1 9/15/06CS150 Introduction to Computer Science 1 Combined Assignments, Relational Operators, and the If Statement.
1 11/3/08CS150 Introduction to Computer Science 1 Reading from and Writing to Files Section 3.12 & 13.1 & 13.5.
File I/O. COMP104 File I/O / Slide 2 Using Input/Output Files * A computer file n is stored on a secondary storage device (e.g., disk) n is permanent.
1 Programming with Data Files Chapter 4 2 Standard Input Output C++ Program Keyboard input cin Output Screen cout.
1 9/29/06CS150 Introduction to Computer Science 1 Loops Section Page 255.
1 10/20/08CS150 Introduction to Computer Science 1 do/while and Nested Loops Section 5.5 & 5.11.
1 10/11/06CS150 Introduction to Computer Science 1 do/while and Nested Loops.
1 9/1/06CS150 Introduction to Computer Science 1 What Data Do We Have? CS 150 Introduction to Computer Science I.
1 Programming with Data Files Chapter 4. 2 Standard Input Output C++ Program Keyboard input cin Output Screen cout.
1 10/29/07CS150 Introduction to Computer Science 1 Reading from and Writing to Files Section 3.12 & 13.1 & 13.5.
CS31: Introduction to Computer Science I Discussion 1A 4/2/2010 Sungwon Yang
1 September 6, 2005CS150 Introduction to Computer Science I What Actions Do We Have Part 1 CS150 Introduction to Computer Science I.
Engineering H192 - Computer Programming The Ohio State University Gateway Engineering Education Coalition Lect 6P. 1Winter Quarter I/O in C Lecture 6.
CS 1 Lesson 5 Loops and Files CS 1 -- John Cole.
1 11/8/06CS150 Introduction to Computer Science 1 More Functions! page 343 November 8, 2006.
Program Input and the Software Design Process ROBERT REAVES.
Programming is instructing a computer to perform a task for you with the help of a programming language.
VARIABLES, TYPES, INPUT/OUTPUT, ASSIGNMENT OPERATION Shieu-Hong Lin MATH/CS Department Chapel.
 2003 Prentice Hall, Inc. All rights reserved. 1 Introduction to C++ Programming Outline Introduction to C++ Programming A Simple Program: Printing a.
CS Class 07 Topics –  When software goes wrong  Count controlled loops  Sentential controlled loops  putting it all together Announcements.
STREAMS AND FILES OVERVIEW.  Many programs are "data processing" applications  Read the input data  Perform sequence of operations on this data  Write.
File I/O ifstreams and ofstreams Sections 11.1 &
1 CS161 Introduction to Computer Science Topic #13.
File Input and Output in C++. Keyboard and Screen I/O #include cin (of type istream) cout (of type ostream) Keyboard Screen executing program input data.
1 09/20/04CS150 Introduction to Computer Science 1 Let ’ s all Repeat Together.
File I/O 1 ifstreams and ofstreams Sections 11.1 & 11.2.
TEXT FILES. CIN / COUT REVIEW  We are able to read data from the same line or multiple lines during successive calls.  Remember that the extraction.
CSC1201: Programming Language 2 Lecture 1 Level 2 Course Nouf Aljaffan (C) CSC 1201 Course at KSU1.
Chapter 2: Introduction to C++. Language Elements Keywords Programmer-defined symbols (identifiers) Operators Punctuation Syntax Lines and Statements.
CHAPTER 2 PART #3 C++ INPUT / OUTPUT 1 st Semester King Saud University College of Applied studies and Community Service CSC1101 By: Fatimah.
Input/Output CSci 588: Data Structures, Algorithms and Software Design Fall 2011 All material not from online sources copyright © Travis Desell, 2011
Copyright © 2012 Pearson Addison-Wesley. All rights reserved. Chapter 6 I/O Streams as an Introduction to Objects and Classes.
CS162 External Data Files 1 Today in CS162 External Files What is an external file? How do we save data in a file?
Copyright © 2006 Pearson Addison-Wesley. All rights reserved Today’s Lecture  I/O Streams  Console I/O  File I/O  Tools for File I/O  Sequential.
File I/O in C++ I. Using Input/Output Files A computer file is stored on a secondary storage device (e.g., disk); is permanent; can be used to provide.
© Janice Regan, CMPT 128, Jan CMPT 128: Introduction to Computing Science for Engineering Students File Input and Output Checking input for errors.
 2003 Prentice Hall, Inc. All rights reserved Basics of a Typical C++ Environment C++ systems –Program-development environment –Language –C++
1 A more complex example Write a program that sums a sequence of integers and displays the result. Assume that the first integer read specifies the number.
1 8/30/06CS150 Introduction to Computer Science 1 Your First C++ Program.
Chapter 1.2 Introduction to C++ Programming
ifstreams and ofstreams
Chapter 1.2 Introduction to C++ Programming
Chapter 1.2 Introduction to C++ Programming
File Processing in C++ Data is stored in files so that it may be retrieved for processing when needed.
What Actions Do We Have Part 1
Chapter 1.2 Introduction to C++ Programming
Introduction to C++ October 2, 2017.
Basic File I/O and Stream Objects
Today’s Lecture I/O Streams Tools for File I/O
File Processing in C++ Data is stored in files so that it may be retrieved for processing when needed.
CSC 143 Stream I/O Classes and Files [A11-A15, A38-A50]
CS150 Introduction to Computer Science 1
CS150 Introduction to Computer Science 1
Let’s all Repeat Together
CS150 Introduction to Computer Science 1
Engineering Problem Solving with C++ An Object Based Approach
Engineering Problem Solving with C++ An Object Based Approach
CHAPTER 4 File Processing.
What Actions Do We Have Part 1
Reading from and Writing to Files
Reading Data From and Writing Data To Text Files
ifstreams and ofstreams
Chapter 1 c++ structure C++ Input / Output
Reading from and Writing to Files Part 2
Reading from and Writing to Files
Presentation transcript:

1 10/25/06CS150 Introduction to Computer Science 1 Reading from and Writing to Files

2 10/25/06CS150 Introduction to Computer Science 1 Files (3.12)  Data stored in variables is temporary  Files are used to permanently store large amounts of data  We will learn how to write programs that can o Create files o Write to files o Read from files  This is similar to how we read from the keyboard and wrote to the screen

3 10/25/06CS150 Introduction to Computer Science 1 Steps to Using Files  There are five steps that must be taken in order to use files in C++ 1. Include header files 2. Define a file stream object 3. Open the file 4. Use the file 5. Close the file

4 10/25/06CS150 Introduction to Computer Science 1 1. Libraries  To access files you will need to include o

5 10/25/06CS150 Introduction to Computer Science 1 2. File Stream Objects ifstream inputFile; ofstream outputFile; fstream inAndOut;  File stream objects are the ways that you refer to the files you are using o Can specify which input/output file to use o May input from more than one file o May output to more than one file

6 10/25/06CS150 Introduction to Computer Science 1 3. Opening Files inputFile.open(“filename”)  Same syntax for both input and output files  Filename is a string literal  Example: ifstream inputFile; inputFile.open(“input.dat”);

7 10/25/06CS150 Introduction to Computer Science 1 Check File Opened Correctly  Before we start using the file for reading or writing, we should make sure that it opened correctly if(!inputInfo == true) { cout << “Error opening input file “; exit(1); }

8 10/25/06CS150 Introduction to Computer Science 1 == true  These two statements are equivalent o if(!inputInfo == true) o if(!inputInfo)  Even if you don’t have == true in your loop, C++ will put it there by default  This applies to all conditional statements in repetition and selection structures

9 10/25/06CS150 Introduction to Computer Science 1 4. Using File Streams  Use input file variable wherever you use cin  Examples: o inputFile >> num;  Output output file variable wherever you use cout  Examples: o outputFile << num;

10 10/25/06CS150 Introduction to Computer Science Example: Writing to a File  The following program asks the user to input numbers and writes these numbers to a file

11 10/25/06CS150 Introduction to Computer Science 1 Example #include using namespace std; int main() { ofstream outputFile; int num; outputInfo.open("out.dat"); if (!outputInfo) { cout << "*** Error opening file" << endl; exit (1); } cout << "Enter a number (9999 to quit): "; cin >> num; while (num != 9999) { outputFile << num << " "; cin >> num; } return 0; }

12 10/25/06CS150 Introduction to Computer Science Reading from a File  Write a program that will read in a sequence of numbers (double) from a file and calculate the sum. Assume that the last number is the trailer (-9999)

13 10/25/06CS150 Introduction to Computer Science Reading Until the EOF  It is possible to read from a file until the end is reached while (inputFile >> num) { cout << num << " "; sum += num; }

14 10/25/06CS150 Introduction to Computer Science Reading Characters  Write a program that reads in some text from a file and outputs that text to the screen  The file contains: Hello Everyone! I'm a file that contains some text.

15 10/25/06CS150 Introduction to Computer Science 1 Solution ifstream inputFile; char letter; inputFile.open("in.dat"); if (!inInfo) { cout << "*** Error opening file" << endl; exit (1); } while (inputFile >> letter) { cout << letter; } cout << endl;

16 10/25/06CS150 Introduction to Computer Science 1 The Output  HelloEveryone!I'mafilethatcontainssometext.  What’s happened?!  All spaces, tabs, and new lines have been ignored.  This is because >> only reads visible characters  How can we read all characters so that the output looks exactly like the input

17 10/25/06CS150 Introduction to Computer Science 1 Solution ifstream inputFile; char letter; inputFile.open("in.dat"); if (!inInfo) { cout << "*** Error opening file" << endl; exit (1); } while (inputFile.get( letter )) { cout << letter; } cout << endl;

18 10/25/06CS150 Introduction to Computer Science Problem  Consider the data file below, where - indicate spaces: d  What values would be assigned to the variables for each of the statements below where inputFile is the file variable? int i,j; double x,y; char ch; o inputFile >> i >> x >> y; o inputFile >> i >> j; o inputFile >> ch >> i; o inputFile >> x >> y >> ch >> x;

19 10/25/06CS150 Introduction to Computer Science 1 Problem 0 ( yournumber % 3) Read in the following file and print out the sum of ALL the numbers in the file and print out the sum of the numbers on each line, except the first number. The first number tells you how many more numbers there will be on that line. Output: Line 1: 10 Line 2: 6 Line 3: 20 Total: 48 File Example:

20 10/25/06CS150 Introduction to Computer Science 1 Problem 1 ( yournumber % 3) Read in the following file and print out the character you read and whether or not the letter is a vowel. At the end, print out how many of each vowel you found. Output: a: Vowel b: Not Vowel c: Not Vowel A: Vowel e: Vowel f: Not Vowel i: Vowel a: 2 e: 1 i: 1 o: 0 u: 0 File Example: a b c A e f i

21 10/25/06CS150 Introduction to Computer Science 1 Problem 2 ( yournumber % 3) Prompt the user for their first and last name and 50 numbers. Write the first and last name to a file followed by the numbers, two numbers on each line in reverse order. Output file: Bob Smith Input: Name? Bob Smith Number 1: 9 Number 2: 4 Number 3: 3 Number 4: Number 49: 9 Number 50: 1