Can someone explain, how can read a binary file. I'm really nervous with this.
eranga262154 22 Junior Poster
Recommended Answers
Jump to PostAnother article from google
http://www.angelfire.com/country/aldev0/cpphowto/cpp_BinaryFileIO.html
Jump to PostI wrote one as follows.
string line; ifstream fileread ("[I]path to the binary file[/I]"); while(! fileread.eof()) { getline(fileread, line); cout << line << endl; } fileread.close();
Well I read a binary file using this, the command prompt is really mad. It,s not displays as a binary code, I mean …
Jump to Postwhy not just do it the quick and easy way
Because the quick and easy way is usually more costly in the long run? :D
In any case it will be a lot faster then reading the fine one byte at a time.
You don't have to read it one …
Jump to PostHow's that? can you show an example?
I can't, but my teachers like to say that if you don't do something right the first time, you end up doing it again and again to fix the problems. It seems to me that using an array is bad because you lock …
Jump to PostI think clear enough me to all of you.
Yeah, but I think you have enough info and code from everyone in this thread to help you write more of your program. It's starting to seem like you're asking us to write it for you.
All 33 Replies

GreenDay2001
eranga262154 22 Junior Poster

GreenDay2001
eranga262154 22 Junior Poster

GreenDay2001
galin 0 Newbie Poster
eranga262154 22 Junior Poster
WaltP 2,905 Posting Sage w/ dash of thyme Team Colleague
Hamrick 150 Posting Whiz
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Hamrick 150 Posting Whiz
vijayan121 1,152 Posting Virtuoso

iamthwee
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Hamrick 150 Posting Whiz
Ancient Dragon commented: Good example of how to make std::string work with binary files +18
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Dave Sinkula 2,398 long time no c Team Colleague
eranga262154 22 Junior Poster
eranga262154 22 Junior Poster
eranga262154 22 Junior Poster
eranga262154 22 Junior Poster
Dave Sinkula 2,398 long time no c Team Colleague
eranga262154 22 Junior Poster
Dave Sinkula 2,398 long time no c Team Colleague
eranga262154 22 Junior Poster
Hamrick 150 Posting Whiz
eranga262154 22 Junior Poster
Dave Sinkula 2,398 long time no c Team Colleague
eranga262154 22 Junior Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.