在下面的代码中,我可以写出字符串' fullname'的内容。使用以下语句时指向目录中的文本文件:
System.IO.File.WriteAllText(path, fullname);
但是,如果我将字符串路径写入FileStream对象(指定了参数),然后将该FileStream对象作为参数传递给StreamWriter对象,则会创建该文件,但不会写入任何内容。
首次尝试:注释掉System.IO.File.WriteAllText(path, fullname);
并使用其上方的三行。这将创建文件,但不会将任何内容写入文件。
第二次尝试:取消评论System.IO.File.WriteAllText(path, fullname);
语句并对其上方的三行进行评论。这可以根据需要执行。
以下是完整的代码块:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace FileInputOutput
{
class Program
{
static void Main(string[] args)
{
// Use the Split() method of the String Class
string fullname = " Robert Gordon Orr ";
fullname = fullname.Trim();
string[] splitNameArray = fullname.Split(' ');
Console.WriteLine("First Name is: {0}", splitNameArray[0]);
Console.WriteLine("Middle Name is: {0}", splitNameArray[1]);
Console.WriteLine("Last Name is: {0}", splitNameArray[2]);
Console.WriteLine("Full name is: {0}", fullname);
string path = @"C:\Programming\C#\C# Practice Folder\Console Applications\FileInputOutput\textfile.txt";
FileStream fs = new FileStream(path, FileMode.Create, FileAccess.ReadWrite);
StreamWriter toFile = new StreamWriter(fs);
toFile.Write(fullname);
//System.IO.File.WriteAllText(path, fullname);`enter code here`
Console.ReadLine();
}
}
}
答案 0 :(得分:4)
正如其他人所说:必须在.NET中刷新流才能将它们写入磁盘。这可以手动完成,但我只需更改您的代码以在您的流上使用语句:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace FileInputOutput
{
class Program
{
static void Main(string[] args)
{
// Use the Split() method of the String Class
string fullname = " Robert Gordon Orr ";
fullname = fullname.Trim();
string[] splitNameArray = fullname.Split(' ');
Console.WriteLine("First Name is: {0}", splitNameArray[0]);
Console.WriteLine("Middle Name is: {0}", splitNameArray[1]);
Console.WriteLine("Last Name is: {0}", splitNameArray[2]);
Console.WriteLine("Full name is: {0}", fullname);
string path = @"C:\textfile.txt";
using (FileStream fs = new FileStream(path, FileMode.Create, FileAccess.ReadWrite))
{
using (StreamWriter toFile = new StreamWriter(fs))
{
toFile.Write(fullname);
}
}
//System.IO.File.WriteAllText(path, fullname);`enter code here`
Console.ReadLine();
}
}
}
在流上调用Dispose()(隐式使用)会导致在使用块结束时刷新和关闭流。
答案 1 :(得分:3)
我认为您只是忘记刷新文件流:
fs.Flush();
这是必要的,因为根据msdn,这是使FileStream实际将缓冲区写入文件的原因。
Flush:清除此流的缓冲区,并将任何缓冲的数据写入该文件。 (重写Stream.Flush()。)
问候。
答案 2 :(得分:3)
您必须调用Close以确保所有数据都正确写入基础流。
所以问题主要在于,由于您实际上并未关闭StreamWriter,因此即使FileStream立即在其构造函数中创建文件,数据也会备份但不会推送到文件中。 。永远不要忘记关闭你的流,因为没有这样做可能会导致重大问题。