vc中怎样读取文件

vc中怎样读取文件,第1张

#include <stdio.h>

int main(void)

{

float a, b, c

FILE * f = fopen("codedata", "r")

while(!feof(f)) {

fscanf(f, "%f %f %f", &a, &b, &c)

printf("%f %f %f\n", a, b, c)

}

fclose(f)

return 0

}

VC使用CFile读取文件内容到CString中,方法是读取每行内容,查找Z,获取后面的数据。具体是:

CStringstrFileNamePath="..//xxx.txt"

intnFileNum=0

CStdioFilemyFile

CStringArraystrPDFFileName

if(myFile.Open(strFileNamePath,CFile::modeRead))

{

//读取;

CStringstrLine

while(myFile.ReadString(strLine))

{

intnPos=strLine.Find(_T("Z"))

CStringstrFileName=strLine.Mid(nPos+2,1)

strPDFFileName.Add(strFileName)

nFileNum++

}

myFile.Close()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12107143.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存