SlideShare una empresa de Scribd logo
1 de 23
Descargar para leer sin conexión
Writing and reading data back from a file.
Extraction operator VS getline function.
Write a single record on a file.
Read a single record from a file.
Build Company class.
Overload operators for the Company class.
Build template for programs.
Dr. Hussien M. Sharaf 2
What is the problem with reading data from files?
Since we are reading from files in form of streams of
bytes therefore we can not differentiate between
tokens.
Fortunately, the extraction operator in C++ can
tokenize streams.
But some fields could include more than one token.
Dr. Hussien M. Sharaf 3
Hussien M. Sharaf dr.sharaf@from-masr.com811 CS215
Name EmailID Course
Dr. Hussien M. Sharaf 4
ofstream: Stream class to write on files
ifstream: Stream class to read from files
fstream: Stream class to both read and
write from/to files.
Dr. Hussien M. Sharaf 5
Write the previous data into a text file then try
reading using:
1. Method: .get (buf,'n');
2. Method: .getline (buf,'n');
3. Function: getline (ifstream, string_Line,'n');
// Write a text file
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line,token;
char buf[1000];
ofstream myfilePut
("example.txt",ios::trunc);
if (myfilePut.is_open())
{
myfilePut<<"Hussien M.
Sharafn";
}
Dr. Hussien M. Sharaf 7
myfilePut.close();
ifstream myfileGet ("example.txt");
if (myfileGet.is_open())
{ while (! myfileGet.eof())
{
//myfileGet >>token;
myfileGet.get (buf,'n');
line=buf;
myfileGet.seekg(0,ios::beg);
myfileGet.getline (buf,'n');
line=buf;
cout << line<< endl;
}
//clear flags any bad operation
myfileGet.clear();
myfileGet .seekg(0,ios::beg );
getline (myfileGet,line,'n');
cout << line<< endl;
//clear flags any bad operation
myfileGet.clear();
myfileGet .seekg(0,ios::beg );
//use exttaction op to read into buf
while (! myfileGet.eof())
{
myfileGet>>buf;
cout << buf<< endl;
}
Dr. Hussien M. Sharaf 8
//clear flags any bad operation
myfileGet.clear();
myfileGet .seekg(0,ios::beg );
//use exttaction op to read into string
while (! myfileGet.eof())
{
myfileGet>>line;
cout << line<< endl;
}
myfileGet .close();
}
else cout << "Unable to open file";
system("Pause");
return 0;}
Try reading using:
1. Extraction op.
2. Function: getline (ifstream,string_Line,'n');
myfileGet>>line;
getline (myfileGet,line,'n');
Does the extraction op. identify separators other
then space?
Dr. Hussien M. Sharaf 10
It was noticed that the extraction operator “>>”
reads until first token separator [space, “,”, “;”,
TAB, “r” ]
What are your suggestions for reading a collection
of fields?
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
string ExtendstringLength(string In, int
requiredSize, string appendchar)
{
while (In.length()<requiredSize )
In=In.append(appendchar);
return In;
}
int main () {
string line,token;
int ID;
string FullName,Course,Email;
char buf[1000];
ID=811;
Dr. Hussien M. Sharaf 11
Course="CS215";
FullName ="Hussien M. Sharaf";
Email="dr.sharaf@from-masr.com";
Course.append("@");
FullName=ExtendstringLength(FullNam
e,20,"@");
Email =
ExtendstringLength(Email,50,"@");
ofstream myfilePut
("example.txt",ios::trunc);
if (myfilePut.is_open())
{
myfilePut<<ID<<Course<<FullName<<
Email ;
}
myfilePut.close();
ifstream myfileGet ("example.txt");
if (myfileGet.is_open())
{
myfileGet>>ID;
cout << ID<< endl;
myfileGet>>Course ;
cout << Course << endl;
//clear flags any bad
operation
myfileGet.clear();
myfileGet .seekg(0,ios::beg
);
myfileGet>>ID;
cout << ID<< endl;
myfileGet.get( buf,7) ;
Course=buf;
Dr. Hussien M. Sharaf 12
Course=Course.substr(0,5);
cout << Course << endl;
myfileGet.get( buf,21) ;
FullName=buf;
FullName
=FullName.erase(FullName.find("@"));
cout << FullName<< endl;
myfileGet.get( buf,51) ;
Email=buf;
Email=Email.erase(Email.find("@"));
cout << Email<< endl;
}
system("Pause");
return 0;
}
Dr. Hussien M. Sharaf 14
What are the required fields? And what are
their types?
1. CompanyName
2. ContactName
3. TitleofBusiness
4. Address
5. City
6. ZipCode
7. Phone
8. Fax
9. Email
10. WebSite
11. CompanyCode
12. CompanyDescription
Each field is qualified by double quotes “.
A screen shot of a file sample
#include <iostream>
using namespace std;
class Company{
string CompanyCode, CompanyDescription ,CompanyName,
ContactName, TitleofBusiness, Address,City, ZipCode, Phone, Fax,
Email, WebSite;
};
1. Write default constructor, copy constructor.
2. Overload “=” operator and “==” [optional]
3. Overload “<<” and “>>” for ostream and istream.
4. Write a driver that uses the above class to read a single line that
contain all fields of a company. Each field is quoted by double
quotes “field_Value” and separated from the next field by a comma ,
Example:
"155","All",“A-z Maintenance",“Malek",“-","902 Bestel Avenue - Garden Grove“,..
Dr. Hussien M. Sharaf 16
Dr. Hussien M. Sharaf 17
User Interface
Classes containing any
processing of data
//Declarations
while (ExitProgram!=true)
{ //take user choice
switch (UserChoice)
{ case 'I':
case 'i':
//handle user Choice
case'E':
case'e':ExitProgram=true; break;
}
}
system("pause");
Dr. Hussien M. Sharaf 18
1. Start by determining Output.
2. List the inputs.
3. Think about processing.
Check Ex 3:
Continue building a class for CompanyInfo:
1. Write default constructor, copy constructor.
2. Overload “=” operator and “==” [optional]
3. Overload “<<” and “>>” for ostream and istream and use
the delimiter method for reading and writing each field.
Each field is required to be enclosed inside two double
quotes i.e “…..”
Write a driver to use this class based on the template
Menu.
Dr. Hussien M. Sharaf 20
Next week is the deadline.
No excuses.
Don’t wait until last day.
I can help you to the highest limit within the next
3 days.
Dr. Hussien M. Sharaf 21
1. Delete the “bin” and “obj” folders.
2. Compress the solution folder using
winrar.
3. Rename the compressed file as follows:
StudentName_ID_A3.rar
4. Email to: n.abdelhameed@fci-cu.edu.eg
with your ID in the subject.
5. With subject: “FO – Assignment#3 -ID”
Dr. Hussien M. Sharaf 22
Reading and writing company records to files in C

Más contenido relacionado

La actualidad más candente

La actualidad más candente (15)

File handling in c++
File handling in c++File handling in c++
File handling in c++
 
File Pointers
File PointersFile Pointers
File Pointers
 
basics of file handling
basics of file handlingbasics of file handling
basics of file handling
 
C5 c++ development environment
C5 c++ development environmentC5 c++ development environment
C5 c++ development environment
 
Filesin c++
Filesin c++Filesin c++
Filesin c++
 
File handling in C++
File handling in C++File handling in C++
File handling in C++
 
C++ Files and Streams
C++ Files and Streams C++ Files and Streams
C++ Files and Streams
 
บทที่5
บทที่5บทที่5
บทที่5
 
Pf cs102 programming-8 [file handling] (1)
Pf cs102 programming-8 [file handling] (1)Pf cs102 programming-8 [file handling] (1)
Pf cs102 programming-8 [file handling] (1)
 
OOP Language Powerpoint
OOP Language PowerpointOOP Language Powerpoint
OOP Language Powerpoint
 
File Handling and Command Line Arguments in C
File Handling and Command Line Arguments in CFile Handling and Command Line Arguments in C
File Handling and Command Line Arguments in C
 
File handling in c++
File handling in c++File handling in c++
File handling in c++
 
Data file handling
Data file handlingData file handling
Data file handling
 
File in cpp 2016
File in cpp 2016 File in cpp 2016
File in cpp 2016
 
File handling
File handlingFile handling
File handling
 

Destacado

Test video
Test videoTest video
Test videoDLML
 
Introducing Applied Ludology: Hands-on Methods for Game Design Research
Introducing Applied Ludology: Hands-on Methods for Game Design ResearchIntroducing Applied Ludology: Hands-on Methods for Game Design Research
Introducing Applied Ludology: Hands-on Methods for Game Design ResearchAki Järvinen
 
Keep Calm and Make It Real
Keep Calm and Make It RealKeep Calm and Make It Real
Keep Calm and Make It RealWiLS
 
Classified catalogue (Tony Vimal)
Classified  catalogue (Tony Vimal)Classified  catalogue (Tony Vimal)
Classified catalogue (Tony Vimal)tonyviamll89
 
Catalogue Entry Format
Catalogue Entry FormatCatalogue Entry Format
Catalogue Entry FormatSarika Sawant
 

Destacado (6)

Test video
Test videoTest video
Test video
 
Introducing Applied Ludology: Hands-on Methods for Game Design Research
Introducing Applied Ludology: Hands-on Methods for Game Design ResearchIntroducing Applied Ludology: Hands-on Methods for Game Design Research
Introducing Applied Ludology: Hands-on Methods for Game Design Research
 
Introducing the LIS Research Coalition
Introducing the LIS Research CoalitionIntroducing the LIS Research Coalition
Introducing the LIS Research Coalition
 
Keep Calm and Make It Real
Keep Calm and Make It RealKeep Calm and Make It Real
Keep Calm and Make It Real
 
Classified catalogue (Tony Vimal)
Classified  catalogue (Tony Vimal)Classified  catalogue (Tony Vimal)
Classified catalogue (Tony Vimal)
 
Catalogue Entry Format
Catalogue Entry FormatCatalogue Entry Format
Catalogue Entry Format
 

Similar a Reading and writing company records to files in C

C++ - UNIT_-_V.pptx which contains details about File Concepts
C++  - UNIT_-_V.pptx which contains details about File ConceptsC++  - UNIT_-_V.pptx which contains details about File Concepts
C++ - UNIT_-_V.pptx which contains details about File ConceptsANUSUYA S
 
C++ course start
C++ course startC++ course start
C++ course startNet3lem
 
streams and files
 streams and files streams and files
streams and filesMariam Butt
 
Stream classes in C++
Stream classes in C++Stream classes in C++
Stream classes in C++Shyam Gupta
 
C programming day#3.
C programming day#3.C programming day#3.
C programming day#3.Mohamed Fawzy
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial javaTpoint s
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questionssekar c
 
Program Assignment Process ManagementObjective This program a.docx
Program Assignment  Process ManagementObjective This program a.docxProgram Assignment  Process ManagementObjective This program a.docx
Program Assignment Process ManagementObjective This program a.docxwkyra78
 
File management in C++
File management in C++File management in C++
File management in C++apoorvaverma33
 
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docx
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docxECS 60 Programming Assignment #1 (50 points) Winter 2016 .docx
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docxjack60216
 

Similar a Reading and writing company records to files in C (20)

C++ - UNIT_-_V.pptx which contains details about File Concepts
C++  - UNIT_-_V.pptx which contains details about File ConceptsC++  - UNIT_-_V.pptx which contains details about File Concepts
C++ - UNIT_-_V.pptx which contains details about File Concepts
 
CS215 Lec 1 introduction
CS215 Lec 1   introductionCS215 Lec 1   introduction
CS215 Lec 1 introduction
 
C++ course start
C++ course startC++ course start
C++ course start
 
streams and files
 streams and files streams and files
streams and files
 
File Organization & processing Mid term summer 2014 - modelanswer
File Organization & processing Mid term summer 2014 - modelanswerFile Organization & processing Mid term summer 2014 - modelanswer
File Organization & processing Mid term summer 2014 - modelanswer
 
Stream classes in C++
Stream classes in C++Stream classes in C++
Stream classes in C++
 
CS215 - Lec 4 single record organization
CS215 - Lec 4  single record organizationCS215 - Lec 4  single record organization
CS215 - Lec 4 single record organization
 
C programming day#3.
C programming day#3.C programming day#3.
C programming day#3.
 
C programming language tutorial
C programming language tutorial C programming language tutorial
C programming language tutorial
 
File io
File ioFile io
File io
 
cpp-file-handling
cpp-file-handlingcpp-file-handling
cpp-file-handling
 
Cpp file-handling
Cpp file-handlingCpp file-handling
Cpp file-handling
 
Srgoc dotnet
Srgoc dotnetSrgoc dotnet
Srgoc dotnet
 
CS215 - Lec 2 file organization
CS215 - Lec 2   file organizationCS215 - Lec 2   file organization
CS215 - Lec 2 file organization
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questions
 
Program Assignment Process ManagementObjective This program a.docx
Program Assignment  Process ManagementObjective This program a.docxProgram Assignment  Process ManagementObjective This program a.docx
Program Assignment Process ManagementObjective This program a.docx
 
Systemcall1
Systemcall1Systemcall1
Systemcall1
 
File management in C++
File management in C++File management in C++
File management in C++
 
C++ppt.pptx
C++ppt.pptxC++ppt.pptx
C++ppt.pptx
 
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docx
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docxECS 60 Programming Assignment #1 (50 points) Winter 2016 .docx
ECS 60 Programming Assignment #1 (50 points) Winter 2016 .docx
 

Más de Arab Open University and Cairo University

Más de Arab Open University and Cairo University (20)

Infos2014
Infos2014Infos2014
Infos2014
 
Model answer of compilers june spring 2013
Model answer of compilers june spring 2013Model answer of compilers june spring 2013
Model answer of compilers june spring 2013
 
Model answer of exam TC_spring 2013
Model answer of exam TC_spring 2013Model answer of exam TC_spring 2013
Model answer of exam TC_spring 2013
 
Theory of computation Lec6
Theory of computation Lec6Theory of computation Lec6
Theory of computation Lec6
 
Lec4
Lec4Lec4
Lec4
 
Theory of computation Lec3 dfa
Theory of computation Lec3 dfaTheory of computation Lec3 dfa
Theory of computation Lec3 dfa
 
Theory of computation Lec2
Theory of computation Lec2Theory of computation Lec2
Theory of computation Lec2
 
Theory of computation Lec1
Theory of computation Lec1Theory of computation Lec1
Theory of computation Lec1
 
Theory of computation Lec7 pda
Theory of computation Lec7 pdaTheory of computation Lec7 pda
Theory of computation Lec7 pda
 
Setup python with eclipse
Setup python with eclipseSetup python with eclipse
Setup python with eclipse
 
Cs419 lec8 top-down parsing
Cs419 lec8    top-down parsingCs419 lec8    top-down parsing
Cs419 lec8 top-down parsing
 
Cs419 lec11 bottom-up parsing
Cs419 lec11   bottom-up parsingCs419 lec11   bottom-up parsing
Cs419 lec11 bottom-up parsing
 
Cs419 lec12 semantic analyzer
Cs419 lec12  semantic analyzerCs419 lec12  semantic analyzer
Cs419 lec12 semantic analyzer
 
Cs419 lec9 constructing parsing table ll1
Cs419 lec9   constructing parsing table ll1Cs419 lec9   constructing parsing table ll1
Cs419 lec9 constructing parsing table ll1
 
Cs419 lec10 left recursion and left factoring
Cs419 lec10   left recursion and left factoringCs419 lec10   left recursion and left factoring
Cs419 lec10 left recursion and left factoring
 
Cs419 lec7 cfg
Cs419 lec7   cfgCs419 lec7   cfg
Cs419 lec7 cfg
 
Cs419 lec6 lexical analysis using nfa
Cs419 lec6   lexical analysis using nfaCs419 lec6   lexical analysis using nfa
Cs419 lec6 lexical analysis using nfa
 
Cs419 lec5 lexical analysis using dfa
Cs419 lec5   lexical analysis using dfaCs419 lec5   lexical analysis using dfa
Cs419 lec5 lexical analysis using dfa
 
Cs419 lec4 lexical analysis using re
Cs419 lec4   lexical analysis using reCs419 lec4   lexical analysis using re
Cs419 lec4 lexical analysis using re
 
Cs419 lec3 lexical analysis using re
Cs419 lec3   lexical analysis using reCs419 lec3   lexical analysis using re
Cs419 lec3 lexical analysis using re
 

Último

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 

Último (20)

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 

Reading and writing company records to files in C

  • 1.
  • 2. Writing and reading data back from a file. Extraction operator VS getline function. Write a single record on a file. Read a single record from a file. Build Company class. Overload operators for the Company class. Build template for programs. Dr. Hussien M. Sharaf 2
  • 3. What is the problem with reading data from files? Since we are reading from files in form of streams of bytes therefore we can not differentiate between tokens. Fortunately, the extraction operator in C++ can tokenize streams. But some fields could include more than one token. Dr. Hussien M. Sharaf 3 Hussien M. Sharaf dr.sharaf@from-masr.com811 CS215 Name EmailID Course
  • 4. Dr. Hussien M. Sharaf 4
  • 5. ofstream: Stream class to write on files ifstream: Stream class to read from files fstream: Stream class to both read and write from/to files. Dr. Hussien M. Sharaf 5
  • 6. Write the previous data into a text file then try reading using: 1. Method: .get (buf,'n'); 2. Method: .getline (buf,'n'); 3. Function: getline (ifstream, string_Line,'n');
  • 7. // Write a text file #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line,token; char buf[1000]; ofstream myfilePut ("example.txt",ios::trunc); if (myfilePut.is_open()) { myfilePut<<"Hussien M. Sharafn"; } Dr. Hussien M. Sharaf 7 myfilePut.close(); ifstream myfileGet ("example.txt"); if (myfileGet.is_open()) { while (! myfileGet.eof()) { //myfileGet >>token; myfileGet.get (buf,'n'); line=buf; myfileGet.seekg(0,ios::beg); myfileGet.getline (buf,'n'); line=buf; cout << line<< endl; }
  • 8. //clear flags any bad operation myfileGet.clear(); myfileGet .seekg(0,ios::beg ); getline (myfileGet,line,'n'); cout << line<< endl; //clear flags any bad operation myfileGet.clear(); myfileGet .seekg(0,ios::beg ); //use exttaction op to read into buf while (! myfileGet.eof()) { myfileGet>>buf; cout << buf<< endl; } Dr. Hussien M. Sharaf 8 //clear flags any bad operation myfileGet.clear(); myfileGet .seekg(0,ios::beg ); //use exttaction op to read into string while (! myfileGet.eof()) { myfileGet>>line; cout << line<< endl; } myfileGet .close(); } else cout << "Unable to open file"; system("Pause"); return 0;}
  • 9. Try reading using: 1. Extraction op. 2. Function: getline (ifstream,string_Line,'n'); myfileGet>>line; getline (myfileGet,line,'n'); Does the extraction op. identify separators other then space?
  • 10. Dr. Hussien M. Sharaf 10 It was noticed that the extraction operator “>>” reads until first token separator [space, “,”, “;”, TAB, “r” ] What are your suggestions for reading a collection of fields?
  • 11. #include <iostream> #include <fstream> #include <string> using namespace std; string ExtendstringLength(string In, int requiredSize, string appendchar) { while (In.length()<requiredSize ) In=In.append(appendchar); return In; } int main () { string line,token; int ID; string FullName,Course,Email; char buf[1000]; ID=811; Dr. Hussien M. Sharaf 11 Course="CS215"; FullName ="Hussien M. Sharaf"; Email="dr.sharaf@from-masr.com"; Course.append("@"); FullName=ExtendstringLength(FullNam e,20,"@"); Email = ExtendstringLength(Email,50,"@"); ofstream myfilePut ("example.txt",ios::trunc); if (myfilePut.is_open()) { myfilePut<<ID<<Course<<FullName<< Email ; } myfilePut.close();
  • 12. ifstream myfileGet ("example.txt"); if (myfileGet.is_open()) { myfileGet>>ID; cout << ID<< endl; myfileGet>>Course ; cout << Course << endl; //clear flags any bad operation myfileGet.clear(); myfileGet .seekg(0,ios::beg ); myfileGet>>ID; cout << ID<< endl; myfileGet.get( buf,7) ; Course=buf; Dr. Hussien M. Sharaf 12 Course=Course.substr(0,5); cout << Course << endl; myfileGet.get( buf,21) ; FullName=buf; FullName =FullName.erase(FullName.find("@")); cout << FullName<< endl; myfileGet.get( buf,51) ; Email=buf; Email=Email.erase(Email.find("@")); cout << Email<< endl; } system("Pause"); return 0; }
  • 13.
  • 14. Dr. Hussien M. Sharaf 14 What are the required fields? And what are their types? 1. CompanyName 2. ContactName 3. TitleofBusiness 4. Address 5. City 6. ZipCode 7. Phone 8. Fax 9. Email 10. WebSite 11. CompanyCode 12. CompanyDescription
  • 15. Each field is qualified by double quotes “. A screen shot of a file sample
  • 16. #include <iostream> using namespace std; class Company{ string CompanyCode, CompanyDescription ,CompanyName, ContactName, TitleofBusiness, Address,City, ZipCode, Phone, Fax, Email, WebSite; }; 1. Write default constructor, copy constructor. 2. Overload “=” operator and “==” [optional] 3. Overload “<<” and “>>” for ostream and istream. 4. Write a driver that uses the above class to read a single line that contain all fields of a company. Each field is quoted by double quotes “field_Value” and separated from the next field by a comma , Example: "155","All",“A-z Maintenance",“Malek",“-","902 Bestel Avenue - Garden Grove“,.. Dr. Hussien M. Sharaf 16
  • 17. Dr. Hussien M. Sharaf 17 User Interface Classes containing any processing of data
  • 18. //Declarations while (ExitProgram!=true) { //take user choice switch (UserChoice) { case 'I': case 'i': //handle user Choice case'E': case'e':ExitProgram=true; break; } } system("pause"); Dr. Hussien M. Sharaf 18
  • 19. 1. Start by determining Output. 2. List the inputs. 3. Think about processing.
  • 20. Check Ex 3: Continue building a class for CompanyInfo: 1. Write default constructor, copy constructor. 2. Overload “=” operator and “==” [optional] 3. Overload “<<” and “>>” for ostream and istream and use the delimiter method for reading and writing each field. Each field is required to be enclosed inside two double quotes i.e “…..” Write a driver to use this class based on the template Menu. Dr. Hussien M. Sharaf 20
  • 21. Next week is the deadline. No excuses. Don’t wait until last day. I can help you to the highest limit within the next 3 days. Dr. Hussien M. Sharaf 21
  • 22. 1. Delete the “bin” and “obj” folders. 2. Compress the solution folder using winrar. 3. Rename the compressed file as follows: StudentName_ID_A3.rar 4. Email to: n.abdelhameed@fci-cu.edu.eg with your ID in the subject. 5. With subject: “FO – Assignment#3 -ID” Dr. Hussien M. Sharaf 22