51Testing软件测试论坛

标题: 请问如何把获取到的数据导入Excel中? [打印本页]

作者: dishiwujian    时间: 2008-6-5 10:57
标题: 请问如何把获取到的数据导入Excel中?
如题。
在论坛以及Google搜索了一下,基本都是关于怎么从Excel导出数据的帖子。
而现在我是从网页上获取到了一组文本变量,想导入Excel中,请问应该如何做?
谢谢。
作者: shen1936    时间: 2008-6-5 11:05
Actions()
{
        int MyFile;
        char Name[] = "John Doe";


        MyFile = fopen("C:\\temp\\names.txt","w");
// note that "w" is used to write
       
fprintf(MyFile,"%s", Name);
// note that we are printing a string here

        fclose(MyFile);
        return 0;


你尝试一下看能不能写入到excel中
作者: dishiwujian    时间: 2008-6-5 14:20
楼上这个好像是读写txt,这个我也知道,不过Excel的应该怎么办?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2