如下所示:
//StreamRead来读取一个文件
using (StreamReader sr = new StreamReader("C:\Users\enle\Desktop\新建文本文档.txt", Encoding.Default))
{
while (!sr.EndOfStream)//循环的去读文件
{
Console.WriteLine(sr.ReadLine());
}
}
Console.ReadKey();
Str
本文实例讲述了C#使用Streamwriter打开文件的方法。分享给大家供大家参考。具体如下:
using System;
using System.IO;
public class KtoD1 {
public static void Main() {
string str;
StreamWriter fstr_out;
// Open the file directly using StreamWriter.
try {
fstr_out = new StreamW
本文实例讲述了C#使用StreamWriter写入文件的方法。分享给大家供大家参考。具体实现方法如下:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace W
{
class Program
{
static void Main(string[]
一、测试方法是否结果相同首先看下面两段代码1是StreamWriter.Write 2是Stream.Write:
1 代码如下:Stream ms = new MemoryStream();string str = “这是测试字符串”;StreamWriter sw = new StreamWriter(ms, Encoding.UTF8);sw.Write(str);sw.Flush();
2 代码如下:Stream ms = new MemoryStream();string str =