當前位置:成語大全網 - 書法字典 - C#保存txt到本地。

C#保存txt到本地。

1.創建壹個文本文件。

公共類FileClass

{

公共靜態void Main()

{

write to file();

}

靜態void WriteToFile()

{

StreamWriter軟件;

SW =文件。create text(" c:\ my text file . txt ");

西南。WriteLine(“上帝是最偉大的”);

西南。WriteLine("這是第二行");

西南。close();

控制臺。WriteLine("文件已成功創建");

}

}

2.閱讀文件

公共類FileClass

{

公共靜態void Main()

{

read from file(" c:\ mytextfile . txt ");

}

靜態void ReadFromFile(字符串文件名)

{

StreamReader SR

字符串S;

SR =文件。OpenText(文件名);

s = SR . ReadLine();

while(S!=空)

{

控制臺。寫線;

s = SR . ReadLine();

}

SR . Close();

}

}

3.附加操作

公共類FileClass

{

公共靜態void Main()

{

AppendToFile();

}

靜態void AppendToFile()

{

StreamWriter軟件;

SW =文件。append text(" C:\ mytextfile . txt ");

西南。WriteLine("這壹行是追加的");

西南。close();

控制臺。WriteLine("文本附加成功");

}

}