请问如何把获取到的数据导入Excel中?
如题。在论坛以及Google搜索了一下,基本都是关于怎么从Excel导出数据的帖子。
而现在我是从网页上获取到了一组文本变量,想导入Excel中,请问应该如何做?
谢谢。 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中 楼上这个好像是读写txt,这个我也知道,不过Excel的应该怎么办?
页:
[1]