1 Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating a Sequential Access File 11.5Reading.

Slides:



Advertisements
Similar presentations
Using Files Declare a variable, called file pointer, of type FILE * Use function fopen to open a named file and associate this file with the file pointer.
Advertisements

© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 11 – File Processing Outline 11.1Introduction.
Files in C Rohit Khokher. Files in C Real life situations involve large volume of data and in such cases, the console oriented I/O operations pose two.
Chapter 11: Data Files & File Processing In this chapter, you will learn about Files and streams Creating a sequential access file Reading data from a.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved Introduction Data files –Can be created, updated,
 2000 Prentice Hall, Inc. All rights reserved. Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Chapter 11 C File Processing Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc.
Lec11: File Processing 廖雪花 TEL: 年 5 月.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating.
Files and Streams Python views files as sequential streams of bytes Each file ends with an end-of-file marker Opening a file creates an object associated.
CS1061 C Programming Lecture 18: Sequential File Processing A. O’Riordan, 2004, 2007 updated.
Console and File I/O - Basics Rudra Dutta CSC Spring 2007, Section 001.
Files Programs and data are stored on disk in structures called files Examples Turbo C++ - binary file Word binary file lab1.c - text file lab1.data.
C File Processing. Objectives To be able to create, write and update files. To become familiar with sequential access file processing. To become familiar.
1 Structure part 1 & File Processing. 2 Structures.
CP104 Introduction to Programming File I/O Lecture 33 __ 1 File Input/Output Text file and binary files File Input/output File input / output functions.
C How to Program, 7/e © by Pearson Education, Inc. All Rights Reserved.
C How to Program, 6/e © by Pearson Education, Inc. All Rights Reserved.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Programming Practice Introduction Tree Operations. Binary Search Tree. File Processing Create, read, write and update files. Sequential.
1 File Processing Dr. Serdar ÇELEBİ. 2 Outline Introduction The Data Hierarchy Files and Streams Creating a Sequential Access File Reading Data from a.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
Programming Languages -1 (Introduction to C) files Instructor: M.Fatih AMASYALI
1 Lecture09: File I/O 5/6/2013 Slides modified from Yin Lou, Cornell CS2022: Introduction to C.
Text and Binary File Processing 程式設計 潘仁義 CCU COMM.
1. Introduction File Declaration and Initialization Creating and Opening File Closing File EOF Reading from and Writing into a File Extra : Random Access.
CSC 211 Data Structures Lecture 32
File IO and command line input CSE 2451 Rong Shi.
CSEB114: Principle of programming Chapter 11: Data Files & File Processing.
1 Lecture09: File I/O 11/19/2012 Slides modified from Yin Lou, Cornell CS2022: Introduction to C.
Chapter 11: Data Files and File Processing Files and streams Creating a sequential access file Reading data from a sequential access file Using fgetc()
Chapter 11 File Processing. Objectives In this chapter, you will learn: –To be able to create, read, write and update files. –To become familiar with.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved Introduction Introduce some standard library functions.
 2000 Prentice Hall, Inc. All rights reserved Introduction Data files –Can be created, updated, and processed by C programs –Are used for permanent.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 11 – File Processing Outline 11.1Introduction.
Chapter 12 Files (reference: Deitel ’ s chap 11) chap8.
C Program Design C File Processing 主講人:虞台文. Content Introduction Data Hierarchy Files and Streams Creating a Sequential-Access File Reading Data from.
Chapter 7 : File Processing1 File-Oriented Input & Output CHAPTER 7.
1 CHAPTER6 CHAPTER 6. Objectives: You’ll learn about;  Introduction  Files and streams  Creating a sequential access file  Reading data from a sequential.
chap8 Chapter 12 Files (reference: Deitel ’ s chap 11)
C File Processing. Objectives To be able to create, write and update files. To become familiar with sequential access file processing. To become familiar.
1 Exceptions Exception handling – Exception Indication of problem during execution – E.g., divide by zero – Chained exceptions Uses of exception handling.
GAME203 – C Files stdio.h C standard Input/Output “getchar()”
Chapter 12 Files (reference: Deitel ’ s chap 11) chap8.
File Access Storage of data in variables and arrays is temporary—such data is lost when a program terminates. Files are used for permanent retention of.
CSC141- Introduction to Computer Programming Teacher: AHMED MUMTAZ MUSTEHSAN Lecture – 29 Thanks for Lecture Slides:
Files A collection of related data treated as a unit. Two types Text
 2007 Pearson Education, Inc. All rights reserved. 1 C File Processing.
Lecture 20: C File Processing. Why Using Files? Storage of data in variables and arrays is temporary Data lost when a program terminates. Files are used.
C Programming Day 2. 2 Copyright © 2005, Infosys Technologies Ltd ER/CORP/CRS/LA07/003 Version No. 1.0 Union –mechanism to create user defined data types.
UniMAP SemI-11/12EKT120: Computer Programming1 Files.
 2007 Pearson Education, Inc. All rights reserved C File Processing.
UniMAP SemI-11/12EKT120: Computer Programming1 Files.
Chapter 11 – File Processing
11 C File Processing.
Chapter 4 File Processing
TMF1414 Introduction to Programming
Chapter 11 – File Processing
Text and Binary File Processing
Review & Lab assignments
Chapter: 7-12 Final exam review.
Fundamental of Programming (C)
EPSII 59:006 Spring 2004.
FILE handeling.
EPSII 59:006 Spring 2004.
EPSII 59:006 Spring 2004.
Chapter 11 Files chap8.
CSc 352 File I/O Saumya Debray Dept. of Computer Science
Presentation transcript:

1 Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating a Sequential Access File 11.5Reading Data from a Sequential Access File 11.6Updating Sequential Access Files 11.7Random Access Files 11.8Creating a Random Access File 11.9Writing Data Randomly to a Random Access File 11.10Reading Data Sequentially from a Random Access File 11.11Example: A Transaction Processing Program 11.12Input/Output of Objects

Introduction Data files can be created, updated, and processed by C programs –Files are used for permanent storage of large amounts of data –Storage of data in variables and arrays is only temporary

The Data Hierarchy Bit - smallest data item –Value of 0 or 1 Byte – 8 bits –Used to store a character Decimal digits, letters, and special symbols Field - group of characters conveying meaning –Example: your name Record – group of related fields –Represented a struct or a class –Example: In a payroll system, a record for a particular employee that contained his/her identification number, name, address, etc. File – group of related records –Example: payroll file Database – group of related files

The Data Hierarchy (II) Record key –Identifies a record to facilitate the retrieval of specific records from a file Sequential file – Records typically sorted by key Judy Green SallyBlack TomBlue JudyGreen IrisOrange RandyRed File Record Field Byte (ASCII character J) Bit

Files and Streams C views each file as a sequence of bytes –File ends with the end-of-file marker Or, file ends at a specified byte Stream created when a file is opened –Provide communication channel between files and programs –Opening a file returns a pointer to a FILE structure Example file pointers: stdin - standard input (keyboard) stdout - standard output (screen) stderr - standard error (screen) FILE structure –File descriptor - Index into operating system array called the open file table –File Control Block (FCB) - Found in every array element, system uses it to administer the file

Files and Streams (II) Read/Write functions in standard library –fgetc - reads one character from a file Takes a FILE pointer as an argument fgetc( stdin ) equivalent to getchar() –fputc - writes one character to a file Takes a FILE pointer and a character to write as an argument fputc( 'a', stdout ) equivalent to putchar( 'a' ) –fgets - read a line from a file –fputs - write a line to a file –fscanf / fprintf - file processing equivalents of scanf and printf

Creating a Sequential Access File C imposes no file structure –No notion of records in a file –Programmer must provide file structure Creating a File –FILE *myPtr; - creates a FILE pointer –myPtr = fopen("myFile.dat", openmode); Function fopen returns a FILE pointer to file specified Takes two arguments - file to open and file open mode If file not opened, NULL returned –fprintf - like printf, except first argument is a FILE pointer (the file receiving data) –feof(FILE pointer) - returns true if end-of-file indicator (no more data to process) is set for the specified file

Creating a Sequential Access File (II) –fclose(FILE pointer) - closes specified file Performed automatically when program ends Good practice to close files explicitly Details –Programs may process no files, one file, or many files –Each file must have an unique name and will have a different pointer All file processing must refer to the file using the pointer

Outline 9 1. Initialize variables and FILE pointer 1.1 Link the pointer to a file 2. Input data 2.1 Write to file ( fprintf ) 3. Close file 1/* Fig. 11.3: fig11_03.c 2 Create a sequential file */ 3#include 4 5int main() 6{6{ 7 int account; 8 char name[ 30 ]; 9 double balance; 10 FILE *cfPtr; /* cfPtr = clients.dat file pointer */ if ( ( cfPtr = fopen( "clients.dat", "w" ) ) == NULL ) 13 printf( "File could not be opened\n" ); 14 else { 15 printf( "Enter the account, name, and balance.\n" ); 16 printf( "Enter EOF to end input.\n" ); 17 printf( "? " ); 18 scanf( "%d%s%lf", &account, name, &balance ); while ( !feof( stdin ) ) { 21 fprintf( cfPtr, "%d %s %.2f\n", 22 account, name, balance ); 23 printf( "? " ); 24 scanf( "%d%s%lf", &account, name, &balance ); 25 } fclose( cfPtr ); 28 } return 0; 31}

Outline 10 Program Output Enter the account, name, and balance. Enter EOF to end input. ? 100 Jones ? 200 Doe ? 300 White 0.00 ? 400 Stone ? 500 Rich ?

Reading Data from a Sequential Access File Reading a sequential access file –Create a FILE pointer, link it to the file to read myPtr = fopen( "myFile.dat", "r" ); –Use fscanf to read from the file Like scanf, except first argument is a FILE pointer fscanf( myPtr, "%d%s%f", &myInt, &myString, &myFloat ); –Data read from beginning to end –File position pointer - indicates number of next byte to be read/written Not really a pointer, but an integer value (specifies byte location) Also called byte offset –rewind(myPtr) - repositions file position pointer to beginning of the file (byte 0)

Outline Initialize variables 1.1 Link pointer to file 2. Read data ( fscanf ) 2.1 Print 3. Close file Program Output 1/* Fig. 11.7: fig11_07.c 2 Reading and printing a sequential file */ 3#include 4 5int main() 6{6{ 7 int account; 8 char name[ 30 ]; 9 double balance; 10 FILE *cfPtr; /* cfPtr = clients.dat file pointer */ if ( ( cfPtr = fopen( "clients.dat", "r" ) ) == NULL ) 13 printf( "File could not be opened\n" ); 14 else { 15 printf( "%-10s%-13s%s\n", "Account", "Name", "Balance" ); 16 fscanf( cfPtr, "%d%s%lf", &account, name, &balance ); while ( !feof( cfPtr ) ) { 19 printf( "%-10d%-13s%7.2f\n", account, name, balance ); 20 fscanf( cfPtr, "%d%s%lf", &account, name, &balance ); 21 } fclose( cfPtr ); 24 } return 0; 27} Account Name Balance 100 Jones Doe White Stone Rich

Outline Initialize variables 2. Open file 2.1 Input choice 2.2 Scan files 3. Print 1/* Fig. 11.8: fig11_08.c 2 Credit inquiry program */ 3#include 4 5int main() 6{6{ 7 int request, account; 8 double balance; 9 char name[ 30 ]; 10 FILE *cfPtr; if ( ( cfPtr = fopen( "clients.dat", "r" ) ) == NULL ) 13 printf( "File could not be opened\n" ); 14 else { 15 printf( "Enter request\n" 16 " 1 - List accounts with zero balances\n" 17 " 2 - List accounts with credit balances\n" 18 " 3 - List accounts with debit balances\n" 19 " 4 - End of run\n? " ); 20 scanf( "%d", &request ); while ( request != 4 ) { 23 fscanf( cfPtr, "%d%s%lf", &account, name, 24 &balance ); switch ( request ) { 27 case 1: 28 printf( "\nAccounts with zero " 29 "balances:\n" ); while ( !feof( cfPtr ) ) { 32

Outline Scan files 3. Print 33 if ( balance == 0 ) 34 printf( "%-10d%-13s%7.2f\n", 35 account, name, balance ); fscanf( cfPtr, "%d%s%lf", 38 &account, name, &balance ); 39 } break; 42 case 2: 43 printf( "\nAccounts with credit " 44 "balances:\n" ); while ( !feof( cfPtr ) ) { if ( balance < 0 ) 49 printf( "%-10d%-13s%7.2f\n", 50 account, name, balance ); fscanf( cfPtr, "%d%s%lf", 53 &account, name, &balance ); 54 } break; 57 case 3: 58 printf( "\nAccounts with debit " 59 "balances:\n" ); while ( !feof( cfPtr ) ) { if ( balance > 0 ) 64 printf( "%-10d%-13s%7.2f\n",

Outline Close file 65 account, name, balance ); fscanf( cfPtr, "%d%s%lf", 68 &account, name, &balance ); 69 } break; 72 } rewind( cfPtr ); 75 printf( "\n? " ); 76 scanf( "%d", &request ); 77 } printf( "End of run.\n" ); 80 fclose( cfPtr ); 81 } return 0; 84}

Outline 16 Program Output Enter request 1 - List accounts with zero balances 2 - List accounts with credit balances 3 - List accounts with debit balances 4 - End of run ? 1 Accounts with zero balances: 300 White 0.00 ? 2 Accounts with credit balances: 400 Stone ? 3 Accounts with debit balances: 100 Jones Doe Rich ? 4 End of run.

17 Home Work #12 1. 請建立一個 C 語言程式,可讀入檔案 “score.dat” , 其中此檔案包括學號、英文姓名、兩學科分數。 2. 請計算出第一、二學科的平均成績 3. 請列印出第一、二學科成績最高者 4. 請列印出第一、二學科成績低於平均成績 5. 請依據學號由小至大的順序,重新開立另一個新檔 案,將學號、英文姓名、兩學科分數寫入

Mary Hari Rose Tom score.dat ( create it by a software--wordpad) ID# Name Course A Course B