新微赢技术网

标题: 紧急求助:一个文件编程问题! [打印本页]

作者: 加非猫    时间: 2009-11-3 01:16
标题: 紧急求助:一个文件编程问题!
编程实现:一个名为prog_and_docum文件(包含C++代码和html文本),把此文件中的html文本提取出来,写进一个名为docum.htm的文件中.函数名为extract_html().(提示:可直接调用用string.h中的find()等函数).

1.文件prog_and_docum为:

//<b> My Text to programm</b>
int main()
{
//定义一个整型变量
int i;
}

2.文件docum.htm为:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html14/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<!--提取的文本Text-->
</body>
</html>

3.程序结果:

文件docum.htm变为:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html14/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<!--<b> My Text to programm</b>
定义一个整型变量-->
</body>
</html>
作者: isly‖    时间: 2009-11-3 01:16
我轻轻的来,轻轻的走,不带走一片云彩。
作者: 惠儿雨点    时间: 2009-11-3 01:16
想要完成这个程序你也要出一分力。你会想说:“我毫无头绪!”。
god会回你一句:“那不是借口!”。
作者: 52巧克力aiq    时间: 2009-11-3 01:16
楼上的 有 毛病~~
作者: 冰rose冰    时间: 2009-11-3 01:16
你敢说大爷我有毛病,你是不是没死过。
这是谁家的孩子这么没家教???
气死我了!!!!(心脏病发了。。啊啊)。
作者: お妞妞☆    时间: 2009-11-3 01:16

下面是我编的,不完整,因为对文件不太熟悉,请高手帮忙改改!
#include<fstream.h>
#include<iostream.h>
#include<stdio.h>
#include<string.h>
void extract_html()
{
}
void main()
{
ofstream outFile("prog_and_docu.txt",ios::out);
if(!outFile)
cout<<"文件不能打开!";
else
{ outFile<<"//<b> My Text to programm</b>\n"
<<"int main()\n"<<"{\n"
<< "//定义一个整型变量 \n"
<<"int i;\n"<<"}";
}
ofstream raus("docu.htm",ios::out);
if(!raus)
cout<<"文件不能打开!";
else
{ raus<<"<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\n"
<<""http://www.w3.org/TR/html14/loose.dtd";>\n"
<<"<html>\n"
<<"<head>\n"
<<"<title>Title</title>\n"
<<"</head>\n"
<<"<body>\n"
<<" <!--提取的文本Text-->\n"
<<"</body>\n"
<<"</html>\n";
}
extract_html(outFile,raus);
outFile.close();
raus.close();
system(pause);
}
作者: ★真的爱你★    时间: 2009-11-3 01:16
大家帮忙改改!




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2