dishiwujian 发表于 2008-6-5 10:57:00

请问如何把获取到的数据导入Excel中?

如题。
在论坛以及Google搜索了一下,基本都是关于怎么从Excel导出数据的帖子。
而现在我是从网页上获取到了一组文本变量,想导入Excel中,请问应该如何做?
谢谢。

shen1936 发表于 2008-6-5 11:05:20

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:22

楼上这个好像是读写txt,这个我也知道,不过Excel的应该怎么办?
页: [1]
查看完整版本: 请问如何把获取到的数据导入Excel中?