Chapter 12 Files (reference: Deitel ’ s chap 11) 20061025 chap8.

Slides:



Advertisements
Similar presentations
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 11 – File Processing Outline 11.1Introduction.
Advertisements

© 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.
CS1061: C Programming Lecture 19: Random Access Files A. O’Riordan, 2004, 2007 updated.
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.
17 File Processing. OBJECTIVES In this chapter you will learn:  To create, read, write and update files.  Sequential file processing.  Random-access.
Lecture 11 – Files Operation. Introduction Almost all of the program developed before this is interactive In interactive environment, input is via keyboard.
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.
22. FILE INPUT/OUTPUT. File Pointers and Streams Declarations of functions that perform file I/O appear in. Each function requires a file pointer as a.
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
 2003 Prentice Hall, Inc. All rights reserved. 1 IS 0020 Program Design and Software Tools Stack/Queue - File Processing Lecture 10 March 29, 2005.
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.
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:
File Processing Part 2. Random Access File In sequential access file, record in a file created with the formatted output function fprintf are not necessarily.
1 CSC103: Introduction to Computer and Programming Lecture No 28.
Files A collection of related data treated as a unit. Two types Text
 2007 Pearson Education, Inc. All rights reserved. 1 C File Processing.
FILES IN C. File Operations  Creation of a new file  Opening an existing file  Reading from a file  Writing to a file  Moving to a specific location.
Files. FILE * u In C, we use a FILE * data type to access files. u FILE * is defined in /usr/include/stdio.h u An example: #include int main() { FILE.
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.
1 Chapter 11 – File Processing Outline 11.1Introduction 11.2The Data Hierarchy 11.3Files and Streams 11.4Creating a Sequential Access File 11.5Reading.
Chapter 12 Text and Binary File Processing Dr. Jiung-yao Huang Dept. Comm. Eng. Nat. Chung Cheng Univ. TA: 鄭筱親 陳昱豪.
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
EKT120: Computer Programming
Introduction to Computer Programming Lecture 18 Binary Files
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.
EPSII 59:006 Spring 2004.
EPSII 59:006 Spring 2004.
Chapter 11 Files chap8.
Professor Jodi Neely-Ritz University of Florida
Presentation transcript:

Chapter 12 Files (reference: Deitel ’ s chap 11) chap8

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

cha12 3 Input/Output Files: Review and Further Study Text file: a named collection of characters saved in secondary storage (e.g. on a disk). To mark the end of a text file: a special end-of-file character. Pressing the or key causes the newline character to be placed in the file. (‘\n’). This is a text file! It has two lines.

Meanings of Common Escape Sequences Escape SequenceMeaning ‘\n’new line ‘\t’tab ‘\f’form feed (new page) ‘\r’return (go back to column 1 of current output line) ‘\b’backspace

Comparison of I/O with Standard Files and I/O with User-Defined File Pointers LineFunctions That Access stdin and stdout Functions That Can Access Any Text File 1scanf(“%d”, &num);fscanf(infilep,“%d”, &num); 2printf(“Number=%d\n”,num);fprintf(outfilep, “Number=%d\n”,num);

The Data Hierarchy 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 by 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 chap86

The Data Hierarchy Data Hierarchy (continued): – File – group of related records Example: payroll file – Database – group of related files chap87

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 chap88

Files and Streams chap89

Files and Streams Stream created when a file is opened – Provide communication channel between files and programs – Opening a file returns a pointer to a FILE structure chap810

Files and Streams Read/Write functions in standard library – fgetc Reads one character from a file Takes a FILE pointer as an argument – fputc Writes one character to a file Takes a FILE pointer and a character to write as an argument – fgets Reads a line from a file – fputs Writes a line to a file – fscanf / fprintf File processing equivalents of scanf and printf chap811

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 *cfPtr; Creates a FILE pointer called cfPtr – cfPtr = fopen(“clients.dat", “w”); Function fopen returns a FILE pointer to file specified Takes two arguments – file to open and file open mode If open fails, NULL returned chap812

Creating a Sequential Access File – fprintf Used to print to a file Like printf, except first argument is a FILE pointer (pointer to the file you want to print in) – feof( FILE pointer ) Returns true if end-of-file indicator (no more data to process) is set for the specified file – 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 a unique name and should have its own pointer chap813

Creating a Sequential Access File chap814

Creating a Sequential Access File (Ex1) chap815

Creating a Sequential Access File (Ex1) chap816

chap817 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 ? ^Z

Creating a Sequential Access File (Ex2) using fprintf chap818

chap819 ONSATIR.TXT File Bu bir ornek satirdir. Satir no: 1 Bu bir ornek satirdir. Satir no: 2 Bu bir ornek satirdir. Satir no: 3 Bu bir ornek satirdir. Satir no: 4 Bu bir ornek satirdir. Satir no: 5 Bu bir ornek satirdir. Satir no: 6 Bu bir ornek satirdir. Satir no: 7 Bu bir ornek satirdir. Satir no: 8 Bu bir ornek satirdir. Satir no: 9 Bu bir ornek satirdir. Satir no: 10

Creating a Sequential Access File (Ex2) writing char by char using fputc chap820

Reading Data from a Sequential Access File Reading a sequential access file – Create a FILE pointer, link it to the file to read cfPtr = fopen( “clients.dat", "r" ); – Use fscanf to read from the file Like scanf, except first argument is a FILE pointer fscanf( cfPtr, "%d%s%f", &accounnt, name, &balance ); – Data read from beginning to end – rewind( cfPtr ) Repositions file position pointer to beginning of file (byte 0 ) chap821

Sequential-access File Operating Systems, 2012, Danny Hendler & Roie Zivan 22

23 Notes on fscanf() Reading in a string: fscanf( cfPtr, “%s”, string ) – Reads only a "word" at a time. – Words are separated by a white-space: (space, tab, newline, or any combination of these) – Moves to the next word in the stream automatically after each read.

24 Notes of fgets() Both read data from file, However: – fgets() reads to a newline sign. – fscanf() only reads up to whitespace.

chap8

Account Name Balance 100 Jones Doe White Stone Rich

27 Example: Reading all numbers from a file and then prints their average onto the screen

28 Reading Data from a Sequential Access File Sequential access file – Cannot be modified without the risk of destroying other data – Fields can vary in size Different representation in files and screen than internal representation 1, 34, -890 are all int s, but have different sizes on disk 300 White Jones (old data in file) If we want to change White's name to Worthington, 300 White Jones Worthington 0.00ones Data gets overwritten

 2000 Prentice Hall, Inc. All rights reserved. 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.txt", "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

 2000 Prentice Hall, Inc. All rights reserved. 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",

 2000 Prentice Hall, Inc. All rights reserved. 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}

 2000 Prentice Hall, Inc. All rights reserved. Outline 32 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.

 2000 Prentice Hall, Inc. All rights reserved. Random-Access Files Random access files –Access individual records without searching through other records –Instant access to records in a file Implemented using fixed length records –Sequential files do not have fixed length records

 2000 Prentice Hall, Inc. All rights reserved. C’s view of a random-access file.

 2000 Prentice Hall, Inc. All rights reserved. Creating a Random-Access File Data in random access files –Binary File: Unformatted (stored as "raw bytes") All data of the same type ( int s, for example) uses the same amount of memory All records of the same type have a fixed length Data not human readable

 2000 Prentice Hall, Inc. All rights reserved. Binary File Files containing binary numbers that are the computer’s internal representation of each file component A binary file created on one computer is rarely readable on another type of computers. A binary file can not be created or modified in a word processor. File operations: BINARY FILE – fread  fwrite SEQUENTIAL FILE – fscanf  fprintf

 2000 Prentice Hall, Inc. All rights reserved. 37 Unformatted I/O functions for Creating Binary File Unformatted I/O functions –fwrite Transfer bytes from a location in memory to a file –fread Transfer bytes from a file to a location in memory –Example: fwrite( &number, sizeof( int ), 1, myPtr ); &number – Location to transfer bytes from sizeof( int ) – Number of bytes to transfer 1 – For arrays, number of elements to transfer –In this case, "one element" of an array is being transferred myPtr – File to transfer to or from

 2000 Prentice Hall, Inc. All rights reserved. Creating a Random-Access File (Binary File) 38 binaryp = fopen(“nums.bin”,”wb”); “wb”: write binary “rb”: read binary

 2000 Prentice Hall, Inc. All rights reserved. 39 Creating a Random-Access File Writing struct s fwrite( &myObject, sizeof (struct myStruct), 1, myPtr ); –sizeof – returns size in bytes of object in parentheses To write several array elements –Pointer to array as first argument –Number of elements to write as third argument

 2000 Prentice Hall, Inc. All rights reserved. 40

 2000 Prentice Hall, Inc. All rights reserved. 41 fopen function opens a file; wb argument means the file is opened for writing in binary mode fwrite transfers bytes into a random-access file

 2000 Prentice Hall, Inc. All rights reserved. Writing Data Randomly to a Random-Access File fseek –Sets file position pointer to a specific position –fseek( pointer, offset, symbolic_constant ); pointer – pointer to file offset – file position pointer (0 is first location) symbolic_constant – specifies where in file we are reading from SEEK_SET – seek starts at beginning of file SEEK_CUR – seek starts at current location in file SEEK_END – seek starts at end of file

 2000 Prentice Hall, Inc. All rights reserved. 43

 2000 Prentice Hall, Inc. All rights reserved. 44 fseek searches for a specific location in the random-access file

 2000 Prentice Hall, Inc. All rights reserved. 45 Output

 2000 Prentice Hall, Inc. All rights reserved. 46 Reading Data from a Random- Access File fread –Reads a specified number of bytes from a file into memory fread( &client, sizeof (struct clientData), 1, myPtr ); –Can read several fixed-size array elements Provide pointer to array Indicate number of elements to read –To read multiple elements, specify in third argument

 2000 Prentice Hall, Inc. All rights reserved. 47

 2000 Prentice Hall, Inc. All rights reserved. 48 fread reads bytes from a random- access file to a location in memory