C ++ 'da bir metin dosyasına metin nasıl eklenir?


Yanıtlar:


284

Ekleme açık modunu aşağıdaki gibi belirtmeniz gerekir

#include <fstream>

int main() {  
  std::ofstream outfile;

  outfile.open("test.txt", std::ios_base::app); // append instead of overwrite
  outfile << "Data"; 
  return 0;
}

12
İmha üzerine olduğu gibi dosyayı elle kapatmaya gerek yoktur. Bkz. Stackoverflow.com/questions/748014 . Ayrıca, örnekte <iostream> kullanılmamaktadır.
swalog

6
İos :: app yerine ios_base :: app kullanabilirsiniz
Trevor Hickey

4
std::ofstream::out | std::ofstream::appBunun yerine kullanabilir miyim std::ios_base::app? cplusplus.com/reference/fstream/ofstream/open
Volomike

6
Ayrıca std :: ofstream outfile ("test.txt", std :: ios_base :: app);
bataklık

outKullanırken bayrağı açıkça belirtmenize gerek yoktur, bayrağı std::ofstreamher zaman outsizin için örtük olarak kullanır . Aynı inbayrak std::ifstream. Bunun yerine kullanıyorsanız inve outişaretlerini açıkça belirtmeniz gerekir std::fstream.
Remy Lebeau

12

Bu kodu kullanıyorum. Dosyanın yoksa oluşturulmasını sağlar ve ayrıca biraz hata denetimi ekler.

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;
}

11
 #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;

}

28
Bu C yoludur, C ++ değil.
Dženan

3
Dzenan @. C'nin C ++ 'ın bir alt kümesi olması bu yaklaşımı geçersiz kılmaz.
Osaid

6
@Osaid C, C ++ 'ın bir alt kümesi değildir. Derleyiciler geriye dönük uyumluluk için kodunu derler. Birçok C-geçerli şey C ++ değildir - geçerli şeyler, örneğin VLA.
stryku

ancak dosyanın ortasına metin eklemek istiyorsak? C tarzı ile? DOSYA kullanarak * ?? fseek () ve ftell () ile "a +" veya "a" benim için çalışmadı
vincent thorpe

2

Bunu da böyle yapabilirsin

#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;
}

1
Dosya ofstreamadını kurucuya aktarmak dosyayı hemen açar, bu nedenle open()daha sonra çağırmak gereksizdir.
Remy Lebeau

1

Cevap için kodumu "Kolay Adımlarda C ++ Programlama" adlı bir kitaptan aldım. Aşağıdaki olabilir çalışması gerekir.

#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;   
} 

Umarım bu sana yardımcı olur.


1

Bir bayrak kullanabilir fstreamve std::ios::appbayrakla açabilirsiniz . Aşağıdaki koda bir göz atın ve başınızı temizlemelidir.

...
fstream f("filename.ext", f.out | f.app);
f << "any";
f << "text";
f << "written";
f << "wll";
f << "be append";
...

Burada açık modlar ve akışlar hakkında daha fazla bilgiyi burada bulabilirsiniz .

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.