Output file streams are C++ standard library objects used to write to files.
2
votes
3answers
32 views
What circumstances ostream::write or ostream::operator<< would fail under?
In my C++ code, I am constantly writing different values into a file. My question is that if there is any circumstances that write or << would fail under, considering the fact that file was ...
0
votes
1answer
35 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 ...
1
vote
3answers
39 views
writing numbers to file - strange result
running the following code:
ofstream newfile(path + "file" + ".hash", fstream::out);
filefl.open(path + "file" + ".hash", fstream::out);
char a = 10;
filefl<<a;
filefl.close();
results a ...
0
votes
0answers
30 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 ...
-1
votes
0answers
16 views
how to more efficiently output text, use “gotoxy(x,y) or cpos(x,y)” and better ways of using ofstream/fstream/ostreamH
I am having a small problem.
but first I will explain what I am trying to do.
I am making a "tomigochi" for the C++ console, yes I realize the spellings of the two are different (tomigochi, ...
0
votes
0answers
77 views
c++ ofstream keeps failing member function
I have made a program, where I want to write some things on a file. When I do it directly from my main-function it works fine, but when i make this class member function, it fails to do that. ...
0
votes
2answers
42 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
...
0
votes
0answers
77 views
[Can't figure out][C++] Access violation error using ofstream/fstream?
I am writing to a file, using ofstream. The writes are very rapid for one thing, file is closed and opened extremely frequently. Below is the code:
if( !(IS_ERROR(wcstombs_s( (size_t*)&out, ...
1
vote
1answer
60 views
(C++) Write string of hex to a file
This is driving me insane. I'm a beginner/intermediate C++er and I need to do something that seems simple. I have a string with A LOT of hex characters in it. They were inputted from a txt file. The ...
0
votes
1answer
46 views
(C++) Trouble writing hex to .dat file
My program is pretty long and complex so I cannot explain it all, I will try to just explain my current situation, however.
I have a .dat file (729 of them but only 1 for this example) and I need to ...
0
votes
1answer
37 views
Error when changing location of ofstream file C++
I had code that looked like this:
std::vector <std::string> info;
info.push_back("10");
info.push_back("this is a line to print");
std::ofstream myfile;
myfile.open("list.txt");
...
-1
votes
1answer
43 views
ofstream tofile weird characters after long paragraph to be inserted [closed]
This work perfectly fine with short line, but after extending the line to paragraph, it came out with weird character.
cout << longpara;
cout display: Right now your homepage has some ...
-1
votes
2answers
28 views
how to call a cout function to ofstream output file
I have a function void displayList() that displays a list of a set.
in the main function I also have
ofstream outputFile(output.txt)
how do I call displayList and prints it in output.txt? Thanks.
...
0
votes
2answers
24 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
50 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
1answer
43 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 ...
2
votes
0answers
49 views
File content truncated when using polish characters
Code:
#include <fstream>
const wchar_t * testArray[] =
{
L"Wszystkie kategorie równoważne",
L"Oczekiwane przepływy pieniężne",
L"Risk i dojrzałość",
L"Pozycja strategiczna i ...
1
vote
3answers
142 views
Writing Unicode to a file in C++
I have a problem with writing unicode to a file in C++. I want to write to a file with my own extension a few smiley faces that you can get by typing ALT+NUMPAD(2). I can display it on CMD by making a ...
1
vote
2answers
146 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)
...
1
vote
2answers
36 views
c++ debugging ofstream fail() states?
I've been having strange problems writing to file with ofstreams and have now that
ofstream.fail()
is returning true right after my ofstream.open() call.
Are there some ways to get additional ...
0
votes
2answers
118 views
c++ ofstream pointer fails to write to disk
I am having trouble writing to ofstream pointer and this is quite perplexing as I really don't see anything that is missing anymore. Note, this is a follow up from this question:
C++ vector of ...
0
votes
2answers
94 views
C++ vector of ofstream, how to write to one particular element
To avoid continuously opening and closing multiple files that I am writing to, I am attempting to use a vector of ofstream objects. My code looks like the following so far:
...
1
vote
1answer
184 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
vote
3answers
122 views
C++, Storing a String containing binary into a text file
I am currently attempting to store a string containing binary code.
When I attempt to write this string to a text file it simply stores each 0 and 1 character in a string format, rather than storing ...
0
votes
1answer
50 views
iOS Creating a file in the bundle using C++ not working on ios 6
If i create a file in the simulator i am successfull with:
const char* testFile = "Test.java";
ofstream createTest;
createTest.open(testFile);
createTest << [CodeView.text UTF8String] ;
...
0
votes
2answers
86 views
ofstream shared by mutiple threads - crashes after awhile
this function takes a ofstream as a reference, then builds struct packets and threads off the structs with the ofstream to a trie matching class. A stack is returned with n matches in order of match ...
3
votes
3answers
202 views
C++ efficient way to write to file multiple times
I am dealing with a callback function where based on the data in the callback, I want to write to different files.
For example, in one call, I might want to write to january.csv while in another call ...
0
votes
1answer
74 views
C++ ostream and ofstream conversions
My code has an ostream object that is accumulated by various modules and ultimately displayed to the console. I'd like ALSO to write this ostreamobject to a file, but do I have to rewrite all of that ...
0
votes
1answer
53 views
Printing a NumericUpDown value out of a ofstream
This should be a simple task, but I am recieving a file containing the number "1" instead of the contents of the numericUpDown control. Using breakpoints I can see the value from
ta[i]->Value is the ...
1
vote
2answers
41 views
Write to File's Last 32 Characters
I want to write an info to binary file's last 32 characters. But when i call my writeInfo function, it deletes the whole content. I can read the data before i write, but after i write with this ...
-1
votes
1answer
79 views
ofstream error using << operator
I got error when I use ofstream outputting an double array to a txt file. Here is the code:
static void OutpuResults(std::string fileName, double * yCal, int nPtCal)
{
std::string value;
...
0
votes
1answer
154 views
Copy .txt to int array, then save into another file
// Edit : I've discovered my mistake. Still I'm missing 1 thing: It doesn't count lines correctly. If the last char in .txt isnt '\n' it counts 1 less line. If I hit it it counts 2 much. What's wrong ...
0
votes
1answer
74 views
ofstream write from multiple boost threads - g++ and vs2008
Using the boost thread library I pass the open ofstream file to each thread as a reference, after half the threads write there is some kind of crash and the program terminates. My assumption is the ...
0
votes
2answers
126 views
Using ofstream* wrapper class with overloaded << operator on endl
C++
This is an attempt to make a class that mimics the output behavior of using the << operator of an ofstream, as far as being able to use std::endl and write strings is concerned. The class ...
-3
votes
3answers
121 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 ...
0
votes
1answer
92 views
C++ ofstream delete and cleanup
I am writing a C++ ofstream that sometimes must be cleaned up - the file I am writing to should be deleted and the class deleted and cleaned up.
How? (Except closing it and deleting it by name).
...
0
votes
1answer
113 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 ...
2
votes
1answer
149 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
1answer
57 views
optional ofstream parameter in C++
How can I make an ofstream argument optional?
bool LookingFor(std::string &mi_name, ofstream &my_file = std::cout)
{
my_file << xxx;
.......
}
the compiling error with the above ...
-1
votes
1answer
74 views
ofstream writing data to file: How do I pass a previously defined string as the filename
I have a program that I have written with C++, OpenCV and Qt, where I am trying to write data to a csv file. In my Qt Widget I have created a QFileDialog that allows me to choose where to save the csv ...
1
vote
3answers
103 views
File stream, STL container, and variable length arrays
Originally, I have some code that looks like
class Ball
{
public:
double x , y ;
ofstream out ;
} ;
int main()
{
Ball array[N] ;
array[0].out.open("./position_1.txt") ;
...
0
votes
0answers
99 views
C++ Converting a file stream to a FILE* [duplicate]
Possible Duplicate:
Getting a FILE* from a std::fstream
Creating fstream object from a FILE* pointer
I am trying to interface with tinyXML2, and it is for the most part since the update ...
3
votes
2answers
112 views
error: expected primary-expression before '<<' token
Okay so I'm building a Date class
class Date
{
private:
int d;
int m;
int y;
public:
Date();
Date(int&, int&, int&);
Date(const Date&);
bool ...
0
votes
0answers
111 views
Strange null character sequence in output file
I write a graph to a simple text file format (adjacency list). In one instance, I discovered that the resulting file contains a strange very long line of "NUL" characters.
Where might these null ...
0
votes
1answer
137 views
ofstream will not write to a text file [closed]
I am using Dev C++ to write to a text file using ofstream but it does not work, I have made a text file in dev c++and saved it and on another source file I wrote the following code:
#include ...
0
votes
1answer
98 views
C++ ofstream Huge Text File
So, here's my code for a simple part of a class:
void ArrayToTextFile::textfiller(string *givenpointer){
cout<< "Recieved array pointer address" << givenpointer << endl;
...
0
votes
0answers
90 views
Replace a single value in JSON file with JSONcpp
Is there any way to change a single value in an already existing JSON file with JSONcpp?
I want to preserve the existing formatting (comments, spaces, line breaks) in the file.
Example: find the ...
-1
votes
1answer
160 views
c++ UTF-16 ofstream file creation Windows [duplicate]
Possible Duplicate:
How to open an std::fstream (ofstream or ifstream) with a unicode filename?
I have a string encoded in UTF-16 and I want to create a file, where the name of the file ...
1
vote
3answers
140 views
I'd like to use ifstream and ofstream in C++ to mimic C#'s BinaryReader / BinaryWriter functionality
I'm looking for a way to write floats/ints/strings to a file and read them as floats/ints/strings. (basically read/write as ios::binary).



