ifstream provides an interface to read data from files as input streams.
-1
votes
0answers
27 views
how to check file is in correct format
I have a file that I want to read in, and store the data in a map. The file is in the format
name1 1
name2 2
name3 3
I can read in the file fine, and add the data to a map. The problem ...
-2
votes
2answers
51 views
Unexpected EOF during reading
I wrote two files, one in text mode and one in binary mode with the following code:
write.cpp
struct person {
char name[20];
int age;
float weight;
};
int main(){
ofstream ...
2
votes
1answer
49 views
Why can I not pass an ifstream as I construct it?
The compiler does not like the the main program below
int get1(ifstream &f){
int count;
f >> count;
return count;
}
int main(int argc, char** argv){
cout << ...
1
vote
0answers
32 views
tellg() fails in text mode (no newlines involved)
As I understand using tellg and seekg in text mode can be surprising because of newlines, but i get some strange result without newlines. I have the following code:
#include <fstream>
int ...
1
vote
2answers
46 views
c++ std::ifstream: check if charaters are left to read
Is there a way to check if any characters are left in an ifstream to read and if yes, how can I do this. If you know for sure that this isn't possible, please tell me so.
EDIT: I changed my question ...
0
votes
1answer
32 views
c++ Issue with passing ifstream argument in to header member method
This is my first question so pardon me if I don't look like I've done my homework regarding what I'm going to ask, i assure you I've scanned many internet pages for the answer.
I've been stuck with a ...
0
votes
1answer
37 views
For each line of an ifstream, ofstream to a file. Garbage saved in them?
I'm trying to open an ifstream and then use the information in the input file, manipulate it and save the results to new .txt file for each line.
I'm getting the right thing when I cout it, but ...
0
votes
0answers
31 views
How to open a new ofstream for 'iterated counter'.txt?
I have the following within a while loop, it works as expected (it creates new ofstream and .txt files for each line of a previously defined ifstream) but it fills them with garbage. I'm new to the ...
0
votes
0answers
53 views
C++ reading values into an array on XCode
I can't figure out why the following code doesn't output properly. It's supposed to read a name and grades into an an entry of an array of students. For some reason, there are phantom entries in ...
-2
votes
1answer
50 views
C++ Ifstream Program - Error [closed]
I don't understand what I am doing wrong here. I also don't understand how I am supposed to use ifstream to read in the city and country strings when there has been no file created with that ...
0
votes
2answers
44 views
ifstream ignoring spaces and new lines - why?
So I am writing a simple program just trying to understand why it is ignoring spaces (it treats them as new lines) and why it does not account for new lines.
Language: C++
Platform: Kubuntu 13.04
...
-2
votes
1answer
54 views
Reading a File through get, getline and read : C++
I am trying to explore ifstream class and have written below code which reads a file Test.txt
'Test.txt' - Content
This is Line One
This is Line Two
This is Line Three
This is Line Four
This is Line ...
1
vote
2answers
37 views
stream a file to a vector<float> with copy+back_inserter
I need to read floats out of a file and push them into my vector. I can get his to work by using a temp float but I'm trying without one now.
For some reason the following doesn't work.
...
0
votes
3answers
38 views
Reading a number from a multi-line txt document in c++
I'm making a program, and have a .txt file that i need to read from, and get commands from. the text document looks like:
U
R
F 10
D
F 13
Q
and i need to get the numbers out of it. the way im ...
2
votes
2answers
71 views
Operator >> doesn't like vector<bool>?
I have the following code which basically takes a vector and writes it to a file, and then opens the file and writes the content into a different vector.
#include <fstream>
#include ...
0
votes
0answers
64 views
Write a program that can be used by a small theater to sell tickets for performances. Read data from inputfile
Need help writing a program for class. Here were the posted instructions:
Step 1: The program should have a FUNCTION that displays a screen that shows which seats are available and which are taken. ...
1
vote
2answers
74 views
(c++) Read .dat file as hex using ifstream
This is my first post so sorry if I break any unwritten rules. :P I am a beginner/intermediate programmer and I need help with this program.
I am trying to infile/read/ifstream (whatever) a .dat file ...
0
votes
0answers
15 views
Getting ifstream from istream and calling functions via overloaded >> operator
I've created an object, PDBParser, to extract information from a PDB file. Now I am trying to overload the >> and << operators so that I can use them from the main as so:
inFile >> ...
0
votes
2answers
60 views
reading text with whitespaces in c++
i'm trying to read in the following text file into different variables:
title
subject name
123
subject2 name
124
subject3 name
125
so far i've been using the following code
ifstream myfile;
...
0
votes
2answers
43 views
infile.open refuses to read the variable in the file
So, I have this loop:
int counter1 = 0;
ifstream incard;
string card;
string cardname;
stringstream out;
while (counter1 < 4) {
counter1 = counter1 + 1;
out << counter1;
...
-2
votes
0answers
37 views
c++:mechanism of parsing an input stream
for the following code
#include "iostream"
#include "fstream"
sdt::string variable;
int main( int argc , char * argv[]){
std::ifstream mapper(argv[1]);
...
0
votes
2answers
42 views
What's wrong with the ifstream seekg
I am trying to do a seek and re-read the data. but the code fails.
The code is
std::ifstream ifs (filename.c_str(), std::ifstream::in | std::ifstream::binary);
std::streampos pos = ifs.tellg();
...
1
vote
1answer
44 views
C++ ios:fail() flag
I am trying to read a las file larger then 2GBs (about 15GBs) but ios::fail() flag becomes true in 345th byte. Here is the code below.
void Foo()
{
char* filename = ...
2
votes
3answers
104 views
ifstream:: What is the maximum file size that a ifstream can read
I tried to read a 3GB data file using ifstream and it gives me wrong file size, whereas when I read a 600MB file, it gives me the correct result. In addition to wrong file size, I am also unable to ...
0
votes
3answers
86 views
read in txt file in C++
I have a .txt parameter file like this:
#Stage
filename = "a.txt";
...
#Stage
filename = "b.txt";
...
Basically I want to read one stage each time I access the parameter file.
I planed to use ...
0
votes
1answer
71 views
Read a complex file to pair <string,pair<map<string,string> string> > C++
So we basically want to read a text file consisting of some different segments to our program:
the structure in the program is a cache with: pair data> >
the structure in the file is (were key is ...
0
votes
3answers
72 views
Any way to get rid of the null character at the end of an istream get?
I'm currently trying to write a bit of code to read a file and extract bits of it and save them as variables.
Here's the relevant code:
char address[10];
ifstream tracefile;
tracefile.open ...
0
votes
0answers
29 views
Enum ifstream and getline()
I've got the problem with following code. It should get the object parameters from the txt file. Of course to get enum values correctly I've made this simple getline() function. I'm keep getting ...
0
votes
2answers
26 views
Input/Output file names
I want the output file to have the same name as the input file (with different extension)
E.g: Input: packet_a.raw , Output: packet_a_data.txt
I tried saving the fileName in a string but ifstream and ...
0
votes
2answers
52 views
Saving a file in C++ no data written
I have a class with a member clientCache:
public:
LRUCache<string, string>* clientCache;
The cache is initated by:
clientCache = new LRUCache<string, string>(3);
...
0
votes
2answers
67 views
Passing ifstream as an argument to Class Constructor
I am trying to pass: ifstream infile;
in my main (), to the constructor of a class called "FIFO": FIFO (infile);
In the header file of FIFO (FIFO.h), I have:
FIFO (std::ifstream);
std::ifstream ...
1
vote
1answer
55 views
Won´t read whitespace with ifstream
I am relatively new to C++, so be gentle.
I have a text-file I want to read, but when i read the file it skips the whitespace (space) between separated words.
I tried to take away as much junk-code ...
0
votes
1answer
47 views
Merging Two Sorted Files with fstream
I am trying to take two sorted files with 5000 integers each and combine them into one file of 10000 sorted ints. I have it working except when the program finishes one of the files, printing out the ...
0
votes
0answers
29 views
Debug Assertion Fail on Multiple Use of method
I'm writing a program that reads part of a file that contains a list of integers for example:
1 : 8367
2 : 6524
3 : 43736
4 : 223
5 : 13
I'm taking the part of file, and splitting into 2 other ...
0
votes
3answers
77 views
C++ Ifstream into an array of class objects
I'm having some trouble with a programming project. I want to get information from a .txt document, and store the information in an array of class objects. For each line of the .txt document, I want a ...
1
vote
1answer
68 views
Visual C++ DLL that checks if file exists
I made this dll file that tries to check if a file exists. But even if I manually create the file, my dll still can't find it.
My dll retrieves the process id of the running program and looks for a ...
1
vote
2answers
72 views
ifstream not opening file
In this function i am trying to open a file that contains a set of characters that i want to assign to my matrix array, however whenever i run this program the console displays an error that says that ...
-3
votes
1answer
73 views
C++ reading in a file .txt [closed]
So im trying to develop a miny game. I am stuck on reading in the gameboard properly. I want it to be 20 x 20. So i create an array that starts with 21 rows and columns. A buddy helped me out with ...
2
votes
3answers
90 views
Can't Generate Full Range of Random for Integers
I am trying to generate a file of 10000 integers between 0 and 100 000 so I can do a MergeSort on them later.
When I generate the file using fstream, I never get an integer over 32760.
The following ...
0
votes
1answer
47 views
Borland error that works in Microsoft: Couldn't find a match for 'ifstream::open'
I want to read in a text file that has the name: abc.txt
The text file contains just a simple a, b, and c, each on their own line.
When I compile this using a Microsoft compiler, it compiles with no ...
2
votes
2answers
101 views
How to count line numbers in a file?
I have an open text file, with the cursor at a certain position. I need to find the cursor's line number. Which of the following approaches is the best under a performance point of view?
1) Store the ...
1
vote
2answers
155 views
ifstream --> ofstream c++
I have a function that gets ifstream variable, but I have to write into this file in some situations. E.g.
main()
{
ifstream dataFile("filename.txt");
foo(dataFile);
}
void foo(ifstream &df)
...
0
votes
2answers
235 views
C++ - while(getline) doesn't get the first line of file
I've been working on a C++ program where I read a files contents and copy then onto another file but it always seem to skip the first line. I've seen others having trouble with this and they used ...
0
votes
3answers
112 views
C++ - Read in file lines separated by a comma
I tried looking up what I'm trying to do but I cant find specifically what I'm trying to do. I have a text file with multiple lines that look like this:
12345,12345,12.34,12345,12345
It's the same ...
1
vote
2answers
64 views
ifstream always returns “ELF” to object
I wrote the following method to check whether my program works correctly with file IO, but it most definitely doesn't work. All that I get from inFile is "ELF", can anyone tell me why? My objects ...
2
votes
2answers
148 views
File Reading Class C++
I am making a file reading class. It should, when constructed open the file with the given string and depending on which constructor is called use the second string supplied to skip through the file ...
0
votes
2answers
93 views
(C++) noob - what is wrong with my code? [closed]
I'm trying to read the characters in a given file and output the number of hex characters. When i run this against a text file it's more or less accurate but with just about anything else it seems to ...
1
vote
1answer
55 views
Why seekg does not work with getline?
Seekg does not seem to work, when I reach EOF in myFile.
ifstream myFile("/path/file");
for(int i; i < 10; i++){
myFile.seekg(0);//reset position in myFile
while(getline(myFile, line)){
...
0
votes
1answer
37 views
ifstream on different dir
First, yes, i have searched through sof and google, and all i could find was about using double slashes, but that didin't do the trick, so i'm asking, what i'm doing wrong.
I have a test file called ...
0
votes
1answer
126 views
Left of . must have class/struct/union
I am trying to get a shader file loader into my program. I am copying the code from http://www.opengl.org/sdk/docs/tutorials/ClockworkCoders/loading.php under the "Loading Shader" section. I have a ...


