如何将C++输出流写到文件上去?

包括如何建文件,和如何写过去,如何关闭...谢谢,我闻见这块学的很烂... 包括如何建文件,和如何写过去,如何关闭...谢谢,我闻见这块学的很烂 展开
 我来答
yhp1203
2011-09-14 · 超过18用户采纳过TA的回答
知道答主
回答量:83
采纳率:0%
帮助的人:55.9万
展开全部
using namespace System;
using namespace System::IO;
using namespace System::Text;

int main()
{
String^ path = "c:\\temp\\MyTest.txt"; //文件的路径
{
FileStream^ fs = File::Create( path ); //创建文件
try
{
AddText( fs, "This is some text" );
AddText( fs, "This is some more text," );
AddText( fs, "\r\nand this is on a new line" );
AddText( fs, "\r\n\r\nThe following is a subset of characters:\r\n" );
for ( int i = 1; i < 120; i++ )
{
AddText( fs, Convert::ToChar( i ).ToString() );

if ( Math::IEEERemainder( Convert::ToDouble( i ), 10 ) == 0 )
{
AddText( fs, "\r\n" );
}
}
}
finally
{
if ( fs )
delete (IDisposable^)fs;
}
}

{
FileStream^ fs = File::OpenRead( path );//打开文件,后面代码是完成读文件内容
try
{
array<Byte>^b = gcnew array<Byte>(1024);
UTF8Encoding^ temp = gcnew UTF8Encoding( true );
while ( fs->Read( b, 0, b->Length ) > 0 )
{
Console::WriteLine( temp->GetString( b ) );
}
}
finally
{
if ( fs )
delete (IDisposable^)fs;
}
}
}

void AddText( FileStream^ fs, String^ value ) //写入文件
{
array<Byte>^info = (gcnew UTF8Encoding( true ))->GetBytes( value );
fs->Write( info, 0, info->Length );
}

这够全了吧 =。=
追问
编译器通不过,VC++6.0的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
迷恋_哈哈
推荐于2016-07-21 · TA获得超过342个赞
知道答主
回答量:343
采纳率:0%
帮助的人:286万
展开全部
定义一个fstream或者ofstream
然后和一个文件关联。就可以用<<那样了
ofstream fout;
fout.open("file",ios_base::out);
fout<<"132123"<<endl;
fout.close();
更多追问追答
追问
我的原始代码很简单#include
#include
int main()
{
using namespace std;
string words;
while(cin>>words&&words!="q")
cout<<words;
return 0;
}
就是想把这个输出流写到文件里,大神你帮个忙,帮我实现哈,我不会文件...
追答
#include 
#include
#include
using namespace std;
void main()
{
string s;
char file[30];
ofstream fout;
cout>file;
cout>s;
fout.open(file,ios::out);
if(s!="q")
{
fout<<s;
}
fout.close();

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-09-14
展开全部
路过
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式