Come aggiungere testo a un file di testo in C ++? E crea un nuovo file di testo se non esiste già e aggiungi il testo se esiste.
Come aggiungere testo a un file di testo in C ++? E crea un nuovo file di testo se non esiste già e aggiungi il testo se esiste.
Risposte:
È necessario specificare la modalità aperta append come
#include <fstream>
int main() {
std::ofstream outfile;
outfile.open("test.txt", std::ios_base::app); // append instead of overwrite
outfile << "Data";
return 0;
}
std::ofstream::out | std::ofstream::app
invece di std::ios_base::app
? cplusplus.com/reference/fstream/ofstream/open
out
esplicitamente il flag durante l'utilizzo std::ofstream
, utilizza sempre il out
flag implicitamente per te. Lo stesso con la in
bandiera per std::ifstream
. Dovresti specificare esplicitamente i flag in
e out
se std::fstream
invece lo utilizzassi .
Io uso questo codice. Si assicura che il file venga creato se non esiste e aggiunge anche un po 'di controlli di errore.
static void appendLineToFile(string filepath, string line)
{
std::ofstream file;
//can't enable exception now because of gcc bug that raises ios_base::failure with useless message
//file.exceptions(file.exceptions() | std::ios::failbit);
file.open(filepath, std::ios::out | std::ios::app);
if (file.fail())
throw std::ios_base::failure(std::strerror(errno));
//make sure write fails with exception if something is wrong
file.exceptions(file.exceptions() | std::ios::failbit | std::ifstream::badbit);
file << line << std::endl;
}
#include <fstream>
#include <iostream>
FILE * pFileTXT;
int counter
int main()
{
pFileTXT = fopen ("aTextFile.txt","a");// use "a" for append, "w" to overwrite, previous content will be deleted
for(counter=0;counter<9;counter++)
fprintf (pFileTXT, "%c", characterarray[counter] );// character array to file
fprintf(pFileTXT,"\n");// newline
for(counter=0;counter<9;counter++)
fprintf (pFileTXT, "%d", digitarray[counter] ); // numerical to file
fprintf(pFileTXT,"A Sentence"); // String to file
fprintf (pFileXML,"%.2x",character); // Printing hex value, 0x31 if character= 1
fclose (pFileTXT); // must close after opening
return 0;
}
Potresti anche farlo in questo modo
#include <fstream>
int main(){
std::ofstream ost {outputfile, std::ios_base::app};
ost.open(outputfile);
ost << "something you want to add to your outputfile";
ost.close();
return 0;
}
ofstream
costruttore apre immediatamente il file, quindi la chiamata open()
successiva è ridondante.
Ho ricevuto il mio codice per la risposta da un libro intitolato "Programmazione C ++ in semplici passaggi". Il seguito potrebbe funzionare.
#include <fstream>
#include <string>
#include <iostream>
using namespace std;
int main()
{
ofstream writer("filename.file-extension" , ios::app);
if (!writer)
{
cout << "Error Opening File" << endl;
return -1;
}
string info = "insert text here";
writer.append(info);
writer << info << endl;
writer.close;
return 0;
}
Spero che questo ti aiuta.
È possibile utilizzare un fstream
e aprirlo con la std::ios::app
bandiera. Dai un'occhiata al codice qui sotto e dovrebbe schiarirti le idee.
...
fstream f("filename.ext", f.out | f.app);
f << "any";
f << "text";
f << "written";
f << "wll";
f << "be append";
...
Puoi trovare maggiori informazioni sulle modalità aperte qui e sugli stream qui .