mfc读写txt文件

如何读取txt里面指定位置的字符串到m_edit1中!(单击按扭实现)比如说我的c:\1.txt文件内容如下:———————————————————————Tracing... 如何读取txt里面指定位置的字符串到m_edit1中!(单击按扭实现)

比如说我的c:\1.txt文件内容如下:
———————————————————————
Tracing route to qq.com [60.28.14.159]

over a maximum of 30 hops:

1 * * * Request timed out.

2 22 ms 20 ms 19 ms 116.1.36.1

3 10 ms 9 ms 9 ms 218.65.144.65

4 18 ms 17 ms 17 ms 218.65.144.17

5 29 ms 27 ms 27 ms 202.97.47.253

6 31 ms 29 ms 29 ms 202.97.60.210

7 84 ms 64 ms 65 ms 219.158.34.249

8 137 ms 132 ms 134 ms 219.158.16.177

9 81 ms 79 ms 77 ms 219.158.15.182

10 79 ms 78 ms 77 ms 202.99.66.166

11 143 ms 143 ms 145 ms 60.28.31.106

12 82 ms 79 ms 79 ms 60.28.171.50

13 81 ms 78 ms 78 ms 60.28.14.159

Trace complete.
———————————————————————

然后我要取第四行后面的:116.1.36.1 放到m_edit1中!
这个116.1.36.1 是会变的,我只是要读取这个位置上的数上到m_edit中!
展开
 我来答
bk007lz
2010-06-11 · TA获得超过283个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:191万
展开全部
用输入输出流就行了,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
enochwills
2010-06-11 · TA获得超过4793个赞
知道大有可为答主
回答量:2031
采纳率:96%
帮助的人:1633万
展开全部
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define szSTR 256
void lookup(int num, int t0, int t1, int t2, char * ip)
{
printf("GetLine #%d\t<%d>ms\t<%d>ms\t<%d>ms\tIP[%s]\n", num, t0, t1, t2, ip);
//这里就是取得一整行数据的分析结果,你可以使用num, t0, t1, t2, ip这五个变量了
}
int main(void)
{
int n=0, t0=0, t1=0, t2=0; char ip[16]=""; char line[szSTR]="";
FILE * f = fopen("c:\\1.txt", "r");
while(!feof(f)) {
memset(line, 0, szSTR);
fgets(line, szSTR - 1, f);
if (strstr(line, "ms")) {
sscanf(line, "%d %d ms %d ms %d ms %s", &n, &t0, &t1, &t2, ip);
lookup(n, t0, t1, t2, ip);
}//end if
}//end while
fclose(f);
system("pause");
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式