0
votes
3answers
81 views

Not able to read whole file

I'm making a C++ to be able to open a .bmp image and then being able to put it in a 2D array. Right now i have the code like this: #include <iostream> #include <fstream> #include ...
1
vote
1answer
71 views

reading txt multiple times

I have a program which uses a text_file to store lots of numbers. When I have to load those numbers I have to load it with 2500 numbers a time. I have a while loop to load it again and again and ...
0
votes
4answers
46 views

Incorrect char from file

I have the following .txt file: test.txt 1,2,5,6 Passing into a small C++ program I made through command line as follows: ./test test.txt Source is as follows: #include <iostream> ...
-1
votes
2answers
145 views

How to copy strings from ifstream to vector<string> elegantly? [duplicate]

#include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { ifstream fin("test.txt"); ...
0
votes
0answers
24 views

File classes vs. Console classes

How is it possible for file classes like ifstream, ofstream, and fstream and console input and output classes like istream, ostream, iostream to have common interfaces and behaviors?
2
votes
3answers
1k views

How to read line by line or a whole text file at once?

and now I'm in a chapter introducing files (how to read and write from\to file) First of all, this is not a homework, this is just general help I'm seeking, I asked my teacher but he never responded ...
2
votes
2answers
154 views

aligning output of ofstream

I wish to output data from my program to a text file. Here is a working example showing how I do it currently, where I also include the date/time (I am running Windows): #include <iostream> ...
0
votes
1answer
220 views

Understanding file stream flags/bits

I think that I currently don't understand well the mechanisms of the io stream flags. To try to understand that, I will ask questions on two specific examples. The first one concern the open mode. ...
0
votes
1answer
89 views

Interaction between ios::app and an fstream used for input

While debugging someone else's code I came across an interaction between C++'s fstream object, input via the stream operator and ios::app which I was not previously aware of. Assume file.txt exists ...
0
votes
4answers
206 views

Why include both <iostream> and <fstream> [duplicate]

Possible Duplicate: Why do I need to include both the iostream and fstream headers to open a file I wrote this code: #include <iostream> int main() { std::ofstream ...
0
votes
1answer
303 views

how do I override a std::filebuf?

I have a Visual Studio 2008 C++ 03 application using STLPort 5.2.1 where I would like to use a custom std::filebuf implementation. For example: class MyFileBuf : public std::filebuf { protected: ...
0
votes
2answers
317 views

open and write to existing fstream without overwrite/clearing in C++

I have an existing txt file, I want to be able to write stuff to it (on the next line) without modifying the existing contents. What's a good way to do this? #include <iostream> ofstream myfile ...
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. ...
1
vote
3answers
467 views

Printing out std::string

In the sample code below std::string result = exec( "dir" ) ; cout<<result; I get the following error error C2679: binary '<<' : no operator defined which takes a right-hand ...
0
votes
3answers
950 views

(C++) Is my fstream bad or not good()?

So I have a .cpp file with a Function which recieves a filename, and should return a String with the contents of the file (actualy modified contents, I modified the code to make it more ...
1
vote
1answer
343 views

fscanf type function for streams?

I'm used to using fscanf for simple file input, because it makes it simple. I'm trying to move to streams though and I'd like to be able to do this: fscanf(file, %d %s, int1, str1); as you can see ...
2
votes
4answers
2k views

Reading a single character from an fstream?

I'm trying to move from stdio to iostream, which is proving very difficult. I've got the basics of loading a file and closing them, but I really don't have a clue as to what a stream even is yet, or ...
1
vote
2answers
212 views

getting error in every line i have used <<

error C2784: 'std::basic_ostream<_Elem,_Traits> &std::operator <<(std::basic_ostream<_Elem,_Traits> &,const std::basic_string<_Elem,_Traits,_Alloc> &)' : >could not ...
0
votes
2answers
150 views

c++ text decoder decoding more than asked for

Im working on a text file decoder along with an encoder, they work off of two different text files. The decoder prints the decoded message underneath the encoded message but it also prints a bunch of ...
3
votes
5answers
273 views

C++ Decorate basic_iostream classes

I want to do something like the following code shows: class foo { private: std::fstream* m_stream; public: foo(std::fstream* stream) : m_stream(stream) { } foo& write(char const* s, ...
0
votes
0answers
847 views

#include <fstream> error: no such file or directory in Xcode

In Objective C: Using Xcode on my Mac, I'm getting compiler errors that complain that these header files don't exist. I've tried .h, "" instead of <>, ending the line with a ;, nothing helps. ...
3
votes
3answers
1k views

how can I read exactly 128 bytes from an fstream into a string object?

How do I read exactly 128 bytes from an fstream into a string object? I wrote some code to read the first 128 bytes of a file and print it and then the last 128 bytes of the file and print that. The ...
1
vote
1answer
671 views

how to write any custom data type to file using ifstream?

as question says, i want to write custom data type data of a class maybe to a file using ifstream in c++. Need help.
2
votes
1answer
1k views

c++: how can i read a file line by line to a string type variable?

I'm trying to read a file line by line to a string type variable using the following code: #include <iostream> #include <fstream> ifstream file(file_name); if (!file) { cout ...
2
votes
6answers
887 views

How do you output variable's declared as a double to a text file in C++

I am very new to C++ and I am wondering how you output/write variables declared as double to a txt file. I know about how to output strings using fstream but I cant figure out how to send anything ...
32
votes
6answers
54k views

Reading from text file until EOF repeats last line

The following C++ code uses a ifstream object to read integers from a text file (which has one number per line) until it hits EOF. Why does it read the integer on the last line twice? How to fix this? ...