当前位置:编程学习 > JAVA >>

怎么把string写入word文档中?

比如string name = "mike"; string fileName = "a doc file" 我想创建了一个空的word文档a doc file.doc 并把name作为内容写进去 应该怎么做?
其他:#include<stdio.h>
#include<stdlib.h>
#include<iostream>
#include<cstring>
using namespace std;

main()
{
FILE *cfPtr;
char *s="mike";
if ( (cfPtr=fopen("a doc file.doc", "w+")) == NULL )
cout<<"File could not be opened."<<endl;
else
{
fprintf(cfPtr, "%s\n",  s);
}
}

上一个:public static void main 在程序中的理论位置与作用
下一个:eclipse 如何把工程文件退掉!~ 把不需要的工程文件夹退了

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,