fstream provides an iostream interface for file I/O in C++.
0
votes
0answers
108 views
RandomAccessFile; std::fstream
Does the c++ (c++11) STL have support for a RandomAccessFile? The question RandomAccessFile read/write start-finish position problem appears to touch lightly my question. I know std::fstream ...
0
votes
2answers
83 views
How to write a series of float from text using fstream
Example ABC.txt
10.f 30.2f 20.f
I want to retrieve those information and store inside my array. However i am unsure how to do it.
I dont understand what is
Then (if good), it calls num_get::get ...
-6
votes
3answers
211 views
c++ std::exception … may I have more please? [closed]
I have browsed http://en.cppreference.com/w/cpp/error/exception & http://en.cppreference.com/w/cpp/io/basic_fstream looking for I/O exceptions I could possibly throw. I know I can create a custom ...
0
votes
4answers
167 views
How to read the whole lines from a file (with spaces)?
I am using STL. I need to read lines from a text file. How to read lines till the first \n but not till the first ' ' (space)?
For example, my text file contains:
Hello world
Hey there
If I write ...
0
votes
2answers
70 views
Reading int from .txt , save it to vector and then save to output file
I've written a mysterious program that it suppose to open and read this .txt
`> krol.txt
3 7
3 13
2 4
3 1
and then save it to vector, do some crazy operation with some algorithms, save it to ...
0
votes
2answers
71 views
Fstream class - issue about' >> ' operator
a simple program that create array with int numbers from .txt file that looks like
2 3
5 7
4 2
y x
y x
...
so it's simple nx2 (where n can be unlimited lines). and then fill new file with that ...
0
votes
1answer
108 views
Split a File and put it back together in c++
I want to copy a file by reading blocks of data, sending it and than put it back together again. Sending is not part of the problem, so I left it out in the code. It should work with any type of file ...
0
votes
7answers
270 views
C++ fstream, reading data from text and preforming math operations?
I am at my wits end here. I am writing a program in C++ that will read a text file that contains the following as a brief example:
+ 23 34
- 9 8
+ 100 1
* 8 7
^ 2 5
/ 45 8
The reader will store the ...
1
vote
3answers
136 views
Error reading char values from a .txt file into an array C++
I have to write a program that reads single char values from a .txt file into an array. When I run the code it displays a bunch of weird symbols.
#include <iostream>
#include <fstream>
...
0
votes
1answer
103 views
C++ fstream reading utf-8 charset
I have a text file with Lithuanian symbols, but it won't read it correctly. Instead of Ž I get this �
Setting locales didn't work either
setlocale(LC_ALL, "Lithuanian");
What am I missing?
0
votes
1answer
138 views
seekp before writing?
I want to read and write an binary file with a single file stream. The following code tries to read the first part of the file, and uses it to overwrite the second part of the file. But I find that I ...
3
votes
1answer
138 views
Open an ifstream on a pipe with no data without blocking
I am trying to use an ifstream to open a named pipe that will eventually have data written to it.
std::cout << "Opening " << name << std::endl;
std::ifstream ...
1
vote
1answer
134 views
ifstream::open() function using a string as the parameter
I'm trying to make a program that asks for the file that they user would like to read from, and when I try to myfile.open(fileName) I get the error: "no matching function for call to ...
0
votes
5answers
170 views
Speed up integer reading from file in C++
I'm reading a file, line by line, and extracting integers from it. Some noteworthy points:
the input file is not in binary;
I cannot load up the whole file in memory;
file format (only integers, ...
1
vote
2answers
138 views
Creating a text file with a timestamp in the title
I'm trying to write a program which outputs a lot of data in separate text files. I want the title of each file to be *Poker_Log_timestamp_datestamp.txt*
However, it doesn't actually create the file, ...
0
votes
1answer
78 views
Can't read from file
I'm trying to read text from a .log file. I originally have it working a a windows console application but I'm now trying to make a GUI version using MFC. The problem is when i set the while loop as ...
-3
votes
3answers
194 views
fstream with C program [closed]
May I know how to use fstream in C program to read and write to a file? Hope there's a tutorial for me to make it easy for me to understand. I heard most of them is using the fstream for C++, but less ...
2
votes
8answers
283 views
What is the best efficient way to read millions of integers separated by lines from text file in c++
I have about 25 millions of integers separated by lines in my text file. My first task is to take those integers and sort them. I have actually achieved to read the integers and put them into an array ...
0
votes
1answer
247 views
fstream not writing to file
I'm having trouble with fstream not writing to my file when it is located in a specific place. In the following code when the commented line is uncommented the file is written to, however when it is ...
0
votes
1answer
77 views
Loading an unordered map
I have a file with a lot of words that i'm trying to read and store. I'm trying to create sort a map.
I declared a struct at the beginning of the program which is supposed to be used to store the ...
1
vote
5answers
140 views
To separate comments and data in .txt file by C++ fstream
I have some .txt files with the following pattern:
#Some comments here
bull rocket 3
trailer laker -12
#More comments there
Warriors Pacers 9
Basically, there are some comments around starting ...
3
votes
0answers
503 views
C++: variable 'std::ifstream ifs' has initializer but incomplete type [closed]
Sorry if this is pretty noobish, but I'm pretty new to C++. I'm trying to open a file and read it using ifstream:
vector<string> load_f(string file) {
vector<string> text;
ifstream ...
0
votes
2answers
63 views
Getting fstream errors when compiling with Cygwin
I am working on a program and am getting some strange compiler errors when I attempt to compile with Cygwin. The program compiles and runs just fine with Visual Studio C++ Express, so it seems to ...
0
votes
3answers
59 views
How can the current file be overwritten?
For the following code:
fstream file("file.txt", ios::in):
//some code
//"file" changes here
file.close();
file.clear();
file.open("file.txt", ios::out | ios::trunc);
how can the last three lines ...
0
votes
4answers
48 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>
...
0
votes
2answers
119 views
Code including <fstream> does not compile [closed]
I found the following bit of code on here and was trying to compile it in order to learn some programming:
#include <fstream>
#include <cerrno>
#include <stdexcept>
#include ...
0
votes
1answer
291 views
Windows Phone 8 fstream
I'm trying to read from a file and write to a file when developing a Windows Phone 8 application in native C++.
For reading the file I use:
ifstream inputFile;
inputFile.open(fileName);
string ...
0
votes
2answers
62 views
Clearing the content of file at startup and then append
I want to append some text in a file with std::fstream. I wrote something like this
class foo() {
foo() {}
void print() {
std::fstream fout ("/media/c/tables.txt", std::fstream::app| ...
0
votes
1answer
129 views
C++ Winapi. Read first line from a file, displaying in a textbox
I have recently begun to experiment with winapi in C++. Coming along nicely so far.
I do however having a problem with finding a way to read the first line of a file, and displaying it in a textbox.
...
0
votes
1answer
153 views
C++: Difference between casting ifstream to bool and using ifstream::is_open()
Maybe a dummy question, but I need a clear answer to it. Is there any difference at all in the return of any of those functions
int FileExists(const std::string& filename)
{
ifstream ...
1
vote
2answers
97 views
When opening a file, C or C++?
Currently I'm using C++ for a program I'm writing and I have an, a query regarding Old v New.
Looking online I see people using the C++ syntax to open files. I'm moving to C++ so I should keep up ...
6
votes
3answers
239 views
What's wrong with this code?
The author presented this code under the title A bus error on my platform
#include <fstream>
#include <iostream>
int main()
{
std::ofstream log("oops.log");
...
0
votes
3answers
56 views
proper use of stream in a computationally intensive program
I have a program that may take up to 3-4 hours to finish. Underway I need to output various information into a general file "info.txt". Here is how I do it currently
char dateStr [9];
char timeStr ...
-1
votes
2answers
177 views
C++ - save txt as html using fstream [closed]
I am creating a simple program in that the user will be able to edit a .txt file created by the program and then the program should save that file as a .html document. I do not want to use any ...
0
votes
0answers
529 views
C++ fstream Reading and Writing to the Same File
Here is a simple program that writes a newline at the end of the file that contains the relative position at which each line begins.
Code:
#include <iostream>
#include <fstream>
#include ...
2
votes
1answer
335 views
Writing to a text file using 'ofstream' code error [duplicate]
In C++, I am currently learning about writing to a file (let's say a txt file) using ofstream and I decided to make my own little code and try it myself. I have a question about my code, because it is ...
0
votes
2answers
163 views
Program crashes when trying to access file, fstream --C++
I am making a user database. When I try to open the "dataBase.txt" which holds all of the users and passwords, the console pops up (which should happen since it is a console application) but it says ...
0
votes
1answer
128 views
How does seekg find the end of the file?
In a scenario using seekg & tellg on a file, I was wondering what is happening under the hood?
// Open file and get file size
int myFileSize;
std::fstream myFile;
...
1
vote
1answer
250 views
getline not working with fstream
I am trying to use a text file to initialise a struct that will be used to initialise a 2d vector, yes I know it's complicated but there is going to be a lot of data to work with eventually. The ...
3
votes
1answer
74 views
While trying to read a file opened for output only, the eofbit flag is set for the stream. Why is that?
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream file("out.txt", ios_base::app);
file.seekg(0, ios_base::beg);
char buffer[100];
if( ...
0
votes
3answers
148 views
Sending integer to fstream as little endian
I am writting function for create and save WAV file but I don't know how to send numbers to stream:
ofstream file;
file.open("sound.wav");
file << "RIFF";
file << (int) 32;
file << ...
2
votes
1answer
142 views
How to read a binary file that was written with QDataStream with std::ifstream
I want to read a binary file that was written with a QDataStream and encoding in LittleEndian with a std::fstream (on the same platform, so issues of one data type having a different format are not of ...
0
votes
1answer
86 views
File not reading in correctly
I have a program that reads in a file. All my classes compile fine, but there seems to be an error when I read in the file. Eclipse shows an empty string is being read in (""), which is not what I ...
0
votes
2answers
132 views
Assign last number of a text file to a variable C++
I am doing a program that outputs a list of prime numbers with fstream.
I have this so far:
int export_list (int lim = 50)
{
int x;
last_in_txt = ????????????; // assigns last number on txt
...
0
votes
2answers
169 views
C++ input data into a struct variables from data file
I have a text file containing names and numbers. The name or the string contains 15 chars and I need to put it to the string. I'm working with structures.
struct grybautojas{
string vardas;
...
-2
votes
1answer
160 views
string subscript out of range c++ with fstream [closed]
My code:
#include <iomanip>
#include <iostream>
#include <string>
#include <cmath>
#include <cstdlib>
#include <fstream>
#include <ctime>
using namespace ...
-1
votes
2answers
155 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
73 views
Fstream Intialization in a Class - Checking if File Opened
Example:
//Header File
class Example
{
private:
fstream InputObject;
public:
Example();
}
//Implementation File
...
0
votes
1answer
80 views
Converting “\\u1234” to “\u1234”
I have a string that I have retrived from an html page using boost's regex_search(). Unfortunately, however, the japanese characters in the page are written as \u codes, and these are interpreted by ...
0
votes
2answers
115 views
Why can't I use the `pos_type` return type in the code below?
This is the definition of the function basic_istream::tellg() in VS2010. Note that the function returns a variable of type pos_type. However when I replace the type streamoffused in the example, given ...



