| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 725 人关注过本帖
标题:关于数据写入txt问题,兄弟们进来呀
只看楼主 加入收藏
yts111
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2006-5-17
收藏
 问题点数:0 回复次数:4 
关于数据写入txt问题,兄弟们进来呀
就是想实现按一个按钮后,自动的创建一个txt文本,然后把数据写入到txt中,不知道怎么实现呀!谢谢
在DELPHI中是这样子,可不懂DELPHI呀,
procedure Tfm_main.writetxt(s:string);
var
vfilename:string;
fh:Textfile;
begin
vfilename:='kqrec.txt';
AssignFile(fh,vfilename);
if FileExists(vfilename) then append(fh)
else rewrite(fh);
writeln(fh,s);
closefile(fh);
end;

[此贴子已经被作者于2006-11-20 18:38:37编辑过]

搜索更多相关主题的帖子: txt 兄弟 数据 
2006-11-20 18:37
purana
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:广东-广州
等 级:版主
威 望:66
帖 子:6039
专家分:0
注 册:2005-6-17
收藏
得分:0 
在C#中..可以用流Stream啊...
看看Msdn吧..
StreamWriter这些..

我的msn: myfend@
2006-11-20 18:50
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
收藏
得分:0 
StreamWriter sw=new StreamWriter(文件路径);
sw.Write(s);
sw.Close();

飘过~~
2006-11-20 19:58
jingzhao22visa
Rank: 1
等 级:新手上路
威 望:1
帖 子:343
专家分:0
注 册:2006-8-10
收藏
得分:0 
using System;
using System.IO;
public class TextToFile
{
private const string FILE_NAME = "MyFile.txt";
public static void Main(String[] args)
{
if (File.Exists(FILE_NAME))
{
Console.WriteLine("{0} already exists.", FILE_NAME);
return;
}
using (StreamWriter sw = File.CreateText(FILE_NAME))
{
sw.WriteLine ("This is my file.");
sw.WriteLine ("I can write ints {0} or floats {1}, and so on.",
1, 4.2);
sw.Close();
}
}
}

摘自msdn。。
可以查询streamwriter..
最底下有 “向文本中写入数据”

2006-11-21 17:13
jingzhao22visa
Rank: 1
等 级:新手上路
威 望:1
帖 子:343
专家分:0
注 册:2006-8-10
收藏
得分:0 
我自己写的,没有文件则创建然后加入数据,文件存在则直接加入数据 。。
file 类要引用system.IO;
应该是满足你的要求的。

private void button1_Click(object sender, EventArgs e)
{
string path = @"D:\MyTestListener100.txt";
if (!File.Exists(path))
{
// Create a file to write to.
using (StreamWriter sw = File.CreateText(path))
{
sw.WriteLine(textBox1.Text);

}
}
else
{
// This text is always added, making the file longer over time
// if it is not deleted.
using (StreamWriter sw = File.AppendText(path))
{
sw.WriteLine(textBox1.Text);

}
}
}

2006-11-21 17:27
快速回复:关于数据写入txt问题,兄弟们进来呀
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028485 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved