FileStream 数据的写入和读取

2021/8/16 23:09:58

本文主要是介绍FileStream 数据的写入和读取,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

using System;
using System.IO;
using System.Text;

namespace Demo.App
{
class Program
{
static void Main(string[] args)
{


string Sourcepath = System.AppDomain.CurrentDomain.BaseDirectory + "\\temp\\" + "调解笔录.docx";
string savePath = System.AppDomain.CurrentDomain.BaseDirectory + "\\temp\\" + "调解笔录_" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".docx";
var tempByte = File.ReadAllBytes(Sourcepath);
WriteByteToWord(tempByte, savePath);
Console.ReadLine();
}


/// <summary>
/// 数据写入文件
/// </summary>
/// <param name="tempByte"></param>
/// <param name="savePath">保存的路径</param>
static void WriteByteToWord(byte[] tempByte, string savePath)
{

try
{
using (FileStream fs = new FileStream(savePath, FileMode.Create))
{
byte[] buffer = tempByte;
fs.Write(buffer, 0, buffer.Length);
}
}
catch (Exception ex)
{

Console.WriteLine("写入异常错误:" + ex.Message);

}

}

/// <summary>
/// 数据从文件读取
/// </summary>
/// <param name="SourcePath">文件路径</param>
static void ReadDataByPath(string SourcePath,out string msg)
{

try
{
using (FileStream fs = new FileStream(SourcePath, FileMode.Open))
{
using (StreamReader sr = new StreamReader(fs, Encoding.UTF8))
{
msg = sr.ReadToEnd();
}
}
}
catch (Exception ex)
{
msg = "";
Console.WriteLine("读取数据异常:" + ex.Message);
}

}
}
}



这篇关于FileStream 数据的写入和读取的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程