SlideShare une entreprise Scribd logo
1  sur  23
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances (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
 

En vedette

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
 

En vedette (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
 

Similaire à 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
 

Similaire à 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
 

Plus de Arab Open University and Cairo University

Plus 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
 

Dernier

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 

Dernier (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

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