码迷,mamicode.com
首页 > Windows程序 > 详细

c#通过FileStream读取、写入文件

时间:2017-09-26 17:52:32      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:file   ring   bytes   get   div   byte   tchar   catch   open   

网上找过一些FileStream读取写入文件的代码,但是都有些小问题。

于是自己整理一下,以备不时之需。说明一下,以下代码我都运行过。

1.FileStream读取文件

// FileStream读取文件
public static string FileStreamReadFile(string filePath)
{
    byte[] data = new byte[100];
    char[] charData = new char[100];
    FileStream file = new FileStream(filePath, FileMode.Open);
    //文件指针指向0位置
    file.Seek(0, SeekOrigin.Begin);
    //读入两百个字节
    file.Read(data, 0, (int) file.Length);
    //提取字节数组
    Decoder dec = Encoding.UTF8.GetDecoder();
    dec.GetChars(data, 0, data.Length, charData, 0);
    return Convert.ToString(charData);
}

 

2.用FileStream写文件

// 用FileStream写文件
public static void FileStreamWriteFile(string filePath, string str)
{
    byte[] byData;
    char[] charData;
    try
    {
        FileStream nFile = new FileStream(filePath + "love.txt", FileMode.Create);
        //获得字符数组
        charData = str.ToCharArray();
        //初始化字节数组
        byData = new byte[charData.Length];
        //将字符数组转换为正确的字节格式
        Encoder enc = Encoding.UTF8.GetEncoder();
        enc.GetBytes(charData, 0, charData.Length, byData, 0, true);
        nFile.Seek(0, SeekOrigin.Begin);
        nFile.Write(byData, 0, byData.Length);
    }
    catch (Exception ex)
    {
        throw ex;
    }
}

 

ps:忘记在哪里找到的代码了,就不写参考博客了??

c#通过FileStream读取、写入文件

标签:file   ring   bytes   get   div   byte   tchar   catch   open   

原文地址:http://www.cnblogs.com/chenyangsocool/p/7597601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!