日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

如何利用C/C++逐行读取txt文件中的字符串(可以顺便实现文本文件的复制)

發(fā)布時(shí)間:2025/3/21 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 如何利用C/C++逐行读取txt文件中的字符串(可以顺便实现文本文件的复制) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

?原文地址:? http://blog.csdn.net/stpeace/article/details/12404925

如下代碼均在Windows/VC++6.0下測(cè)試通過, 請(qǐng)一定注意linux和Windows文件格式的區(qū)別


? ? ? ?先用C語言寫一個(gè)丑陋的程序:

[cpp] view plain copy
  • #include?<stdio.h>??
  • #include?<stdlib.h>??
  • int?main()??
  • {??
  • ????FILE?*fp;??
  • ????if(NULL?==?(fp?=?fopen("1.txt",?"r")))??
  • ????{??
  • ????????printf("error\n");??
  • ????????exit(1);??
  • ????}??
  • ??
  • ????char?ch;??
  • ????while(EOF?!=?(ch=fgetc(fp)))??
  • ????{??
  • ????????printf("%c",?ch);??
  • ????}??
  • ??
  • ????fclose(fp);??
  • ??
  • ????return?0;??
  • }??
  • ???? 你只能看到結(jié)果,卻沒法利用每一行。 我們來改為:

    [cpp] view plain copy
  • //?VC++6.0??
  • ??
  • #include?<stdio.h>??
  • #include?<string.h>??
  • ??
  • int?main()??
  • {??
  • ????char?szTest[1000]?=?{0};??
  • ????int?len?=?0;??
  • ??
  • ????FILE?*fp?=?fopen("1.txt",?"r");??
  • ????if(NULL?==?fp)??
  • ????{??
  • ????????printf("failed?to?open?dos.txt\n");??
  • ????????return?1;??
  • ????}??
  • ??
  • ????while(!feof(fp))??
  • ????{??
  • ????????memset(szTest,?0,?sizeof(szTest));??
  • ????????fgets(szTest,?sizeof(szTest)?-?1,?fp);?//?包含了\n??
  • ????????printf("%s",?szTest);??
  • ????}??
  • ??
  • ????fclose(fp);??
  • ??
  • ????printf("\n");??
  • ??
  • ????return?0;??
  • }??
  • ? ? ? 這樣, 我們就是整行讀取了。

    ? ? ? 感覺C的讀取方法有點(diǎn)丑陋,還是看看C++吧:

    [cpp] view plain copy
  • #include?<fstream>??
  • #include?<string>??
  • #include?<iostream>??
  • using?namespace?std;??
  • ??
  • int?main()??
  • {??
  • ????ifstream?in("1.txt");??
  • ????string?filename;??
  • ????string?line;??
  • ??
  • ????if(in)?//?有該文件??
  • ????{??
  • ????????while?(getline?(in,?line))?//?line中不包括每行的換行符??
  • ????????{???
  • ????????????cout?<<?line?<<?endl;??
  • ????????}??
  • ????}??
  • ????else?//?沒有該文件??
  • ????{??
  • ????????cout?<<"no?such?file"?<<?endl;??
  • ????}??
  • ??
  • ????return?0;??
  • }??
  • ?????當(dāng)然,你可以對(duì)上述程序進(jìn)行修改,讓1.txt中的每一行輸入到2.txt中,如下:

    [cpp] view plain copy
  • #include?<fstream>??
  • #include?<string>??
  • #include?<iostream>??
  • using?namespace?std;??
  • ??
  • int?main()??
  • {??
  • ????ifstream?in("1.txt");??
  • ????ofstream?out("2.txt");??
  • ????string?filename;??
  • ????string?line;??
  • ??
  • ????if(in)?//?有該文件??
  • ????{??
  • ????????while?(getline?(in,?line))?//?line中不包括每行的換行符??
  • ????????{???
  • ????????????cout?<<?line?<<?endl;??
  • ????????????out?<<?line?<<?endl;?//?輸入到2.txt中??
  • ????????}??
  • ????}??
  • ????else?//?沒有該文件??
  • ????{??
  • ????????cout?<<"no?such?file"?<<?endl;??
  • ????}??
  • ??
  • ????return?0;??
  • }??
  • ????? 結(jié)果, 2.txt和1.txt中的內(nèi)容完全一致,你可以用Beyond Compare比較一下,我比較過了。

    ?

    ???? 看來上述程序還能實(shí)現(xiàn)文件的復(fù)制呢,如下:

    [cpp] view plain copy
  • #include?<fstream>??
  • #include?<string>??
  • #include?<iostream>??
  • using?namespace?std;??
  • ??
  • void?fileCopy(char?*file1,?char?*file2)??
  • {??
  • ????//?最好對(duì)file1和file2進(jìn)行判斷??
  • ??????
  • ????ifstream?in(file1);??
  • ????ofstream?out(file2);??
  • ????string?filename;??
  • ????string?line;??
  • ??
  • ????while?(getline?(in,?line))??
  • ????{???
  • ????????out?<<?line?<<?endl;??
  • ????}??
  • }??
  • ??
  • int?main()??
  • {??
  • ????fileCopy("1.txt",?"2.txt");??
  • ????return?0;??
  • }??
  • ???? 當(dāng)然了,上述程序只能針對(duì)文本文件(不僅僅是.txt),對(duì)其它類型的文件,不適合。

    ?

    《新程序員》:云原生和全面數(shù)字化實(shí)踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀

    總結(jié)

    以上是生活随笔為你收集整理的如何利用C/C++逐行读取txt文件中的字符串(可以顺便实现文本文件的复制)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。