1
vote
2answers
62 views

C++ : Read/Write Binary data to file when data is complex

How would I write/read data to a file in binary, if I also have to define how to save my data? I'm attempting to save some simple data structures out to a file in binary. For example, I have a ...
0
votes
1answer
29 views

Why am I getting unicodeand large numbers when reading from binary text?

I am reading a list using ifstream from a binary file to build an array. Here is my build array function: int buildArrays (Player players[]) { ifstream inFile; inFile.open( "binary_hockey", ...
0
votes
1answer
77 views

can't copy shorts into dynamic array C++

I've been trying to load a 3d model format into C++, but I'm having a problem with it. Everything goes okay except for the indicies array of shorts... When I try and load one model, the first 2 spaces ...
1
vote
1answer
196 views

How to convert this binary (.dat) file [example inside] to readable text

I have a file 'quizzes.dat' which, when opened in notepad looks like this: "Bart Simpson K A F Ralph Wiggum # < , Lisa Simpson d b [ Martin Prince c b c Milhouse Van Houten P W O " all on one ...
-1
votes
2answers
425 views

Reading binary file with fstream

I am reading a binary file with fstream and storing the information in an array of characters: int dataLength = 32; int counter = 0; char data[dataLength]; char PMTone[dataLength/4]; std::fstream *fs ...
0
votes
1answer
422 views

ifstream read binary data issue 0x00 byte

Hi everyone i have an issue while reading binary data from a binary file as following: File Content: D3 EE EE 00 00 01 D7 C4 D9 40 char * afpContentBlock = new char[10]; ifstream ...
0
votes
2answers
299 views

How can I convert a text file with numbers in it into a binary file?

So I have made a program that opens up a text file using ifstream. Now I want to make it so it outputs this file in binary. I have tried ofstream and using .write() but when I do the program crashes. ...
3
votes
2answers
737 views

Reading then adding large number of integers from binary file fast in C/C++

I was writing code to read unsigned integers from a binary file using C/C++ on a 32 bit Linux OS intended to run on an 8-core x86 system. The application takes an input file which contains unsigned ...
0
votes
0answers
143 views

fstream not working when I install the app

I made an app that saves/loads using fstreams with a binary file. It saves and loads perfectly when I'm debugging in VS2010, both debug and release mode. I made a setup project for it though that ...
1
vote
2answers
2k views

writing into binary files

#include <iostream> #include <fstream> using namespace std; class info { private: char name[15]; char surname[15]; int age; public: void input(){ ...
2
votes
5answers
383 views

What Makes a Binary Stream Special?

std::fstream has the option to consider streams as binary, rather than textual. What's the difference? As far as I know, it all depends on how the file is opened in other programs. If I write A to ...
0
votes
2answers
253 views

C++ and binary files - newbie question

I have the following code and i am trying to write some data in a binary file. The problem is that i don't have any experience with binary files and i cant understand what i am doing. #include ...
0
votes
1answer
370 views

Error in writing binary files in C++

I try to open a binary file for both reading and writing (flag: ios_base::binary | ios_base::in | ios_base::out). My file already exists and its content is: 123 There is no problem in reading of the ...
1
vote
3answers
749 views

binary file created in c++ but content deleted after running

Backstory: I'm doing a C++ school project. I need write a program that, among other things, creates a binary file if it doesn't already exist, allows the user to modify it, and saves the file so that ...
0
votes
4answers
965 views

C++ ifstream/fstream corrupting data

I'm new to C++ and I've to do an assignment for school. I need to copy a binary* file without using api calls or system integrated commands. At school we use a windows machine. I've searched around ...
2
votes
1answer
1k views

Why can't I read fstream's binary data with operator>>?

If I do something like the following: ifstream file; file.open("somefile", ios::binary); unsigned int data; file >> data; my stream will always flag the fail bit and the data will remain ...
5
votes
3answers
449 views

Writing binary files using C++: does the default locale matter?

I have code that manipulates binary files using fstream with the binary flag set and using the unformatted I/O functions read and write. This works correctly on all systems I've ever used (the bits in ...
2
votes
6answers
3k views

C++ Storing objects in a file

I have a list of objects that I would like to store in a file as small as possible for later retrieval. I have been carefully reading this tutorial, and am beginning (I think) to understand, but have ...
0
votes
3answers
999 views

writing binary data

I am writing to binary file using fstream and when open the file using binary flag. I needed to write some text as binary, which a simple write did the trick. The problem is that I need also to write ...