C#中怎么将字符串写入到一个文本文件中
就是将程序中拼成的一串字符串,想输出或者是覆盖到一个已有的文本文件中,并运行这个文件,请高手指点怎么实现。最好能写出一些具体代码,谢谢!谢谢,你的能用,我等下会给你采纳并...
就是将程序中拼成的一串字符串,想输出或者是覆盖到一个已有的文本文件中,并运行这个文件,请高手指点怎么实现。最好能写出一些具体代码,谢谢!
谢谢,你的能用,我等下会给你采纳并加分的,但是现在还有个问题我想问下,麻烦你了。
string aa = number.Text ;
string result = "";
foreach (char c in aa)
{
result += c + ",";
}
string lastResult = result.Substring(0, result.Length - 1);
show.Text = lastResult;
string str = "CreateObject("SAPI.SpVoice").Speak"+"lastResult";
lastResult是我之前拼出来的一个字符串,我想让他跟CreateObject("SAPI.SpVoice").Speak 这个组合在一起,但是报错提示不行,而且lastResult应该是需要调用上面的结果,这个怎么做? 展开
谢谢,你的能用,我等下会给你采纳并加分的,但是现在还有个问题我想问下,麻烦你了。
string aa = number.Text ;
string result = "";
foreach (char c in aa)
{
result += c + ",";
}
string lastResult = result.Substring(0, result.Length - 1);
show.Text = lastResult;
string str = "CreateObject("SAPI.SpVoice").Speak"+"lastResult";
lastResult是我之前拼出来的一个字符串,我想让他跟CreateObject("SAPI.SpVoice").Speak 这个组合在一起,但是报错提示不行,而且lastResult应该是需要调用上面的结果,这个怎么做? 展开
2个回答
展开全部
哥们你也不给点悬赏分,还好没分我也愿意回答,呵呵!
首先添加引用
using System.IO;
using System.Diagnostics;
////////////////////////这里是覆盖你的已有的文本文件////////////////////
string str="你的字符串";
string filePath = "d:\\infor.txt";//这里是你的已知文件
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.ReadWrite);
StreamWriter sw = new StreamWriter(fs);
fs.SetLength(0);//首先把文件清空了。
sw.Write(str);//写你的字符串。
sw.Close();
/////////////////////以下是运行这个文件/////////////////////////
Process p = new Process();
p.StartInfo.FileName =filePath;
p.Start();
首先添加引用
using System.IO;
using System.Diagnostics;
////////////////////////这里是覆盖你的已有的文本文件////////////////////
string str="你的字符串";
string filePath = "d:\\infor.txt";//这里是你的已知文件
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.ReadWrite);
StreamWriter sw = new StreamWriter(fs);
fs.SetLength(0);//首先把文件清空了。
sw.Write(str);//写你的字符串。
sw.Close();
/////////////////////以下是运行这个文件/////////////////////////
Process p = new Process();
p.StartInfo.FileName =filePath;
p.Start();
更多追问追答
追问
string aa = number.Text ;
string result = "";
foreach (char c in aa)
{
result += c + ",";
}
string lastResult = result.Substring(0, result.Length - 1);
show.Text = lastResult;
string str = "CreateObject("SAPI.SpVoice").Speak"+"lastResult";
追答
追问是什么意思?只贴出来了代码,没有问题啊?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询