这篇文章主要为大家详细介绍了如何利用C#实现文件与字符串互转效果,文中的示例代码讲解详细,对我们学习C#有一定帮助,需要的可以参考一下
嗯,就是BASE64,不用多想,本来计划是要跟上一篇字符串压缩一起写的,用来实现将一个文件可以用json或者text等方式进行接口之间的传输,为了保证传输效率,所以对生成的字符串进行进一步压缩。但是由于不能上传完整源代码,所以就还是分开写了,方便展示实现效果以及功能的单独使用。
实现功能
将文件与为字符串互转
开发环境
开发工具: Visual Studio 2013
.NET Framework版本:4.5
实现代码
//选择文件路径
private void btnPath_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
if (ofd.ShowDialog() == DialogResult.OK)
{
textBox1.Text = ofd.FileName;
}
}
//调用文件转base64
private void btnBase64_Click(object sender, EventArgs e)
{
textBox2.Text = FileToBase64String(textBox1.Text);
MessageBox.Show("成功");
}
//调用base64转文件
private void btnFile_Click(object sender, EventArgs e)
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "文件|*" + textBox1.Text.Substring(textBox1.Text.LastIndexOf('.'));
if (sfd.ShowDialog() == DialogResult.OK)
{
Base64StringToFile(textBox2.Text, sfd.FileName);
MessageBox.Show("成功");
}
}
//文件转base64
public string FileToBase64String(string path)
{
try
{
string data = "";
using (MemoryStream msReader = new MemoryStream())
{
using (FileStream fs = new FileStream(path, FileMode.Open))
{
byte[] buffer = new byte[1024];
int readLen = 0;
while ((readLen = fs.Read(buffer, 0, buffer.Length)) > 0)
{
msReader.Write(buffer, 0, readLen);
}
}
data = Convert.ToBase64String(msReader.ToArray());
}
return data;
}
catch (Exception ex)
{
throw ex;
}
}
//base64转文件
public void Base64StringToFile(string base64String, string path)
{
try
{
using (MemoryStream stream = new MemoryStream(Convert.FromBase64String(base64String)))
{
using (FileStream fs = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write))
{
byte[] b = stream.ToArray();
fs.Write(b, 0, b.Length);
}
}
}
catch (Exception ex)
{
throw ex;
}
}
实现效果
观察代码可以发现,其实在上一篇做压缩的时候,也是用到了base64,所以如果是单纯的要操作文件的,只需要对文件进行流操作即可。
到此这篇关于C#实现文件与字符串互转的方法详解的文章就介绍到这了,更多相关C# 文件字符串互转内容请搜索得得之家以前的文章希望大家以后多多支持得得之家!
沃梦达教程
本文标题为:C#实现文件与字符串互转的方法详解
基础教程推荐
猜你喜欢
- C#控制台实现飞行棋小游戏 2023-04-22
- winform把Office转成PDF文件 2023-06-14
- C# windows语音识别与朗读实例 2023-04-27
- C# List实现行转列的通用方案 2022-11-02
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- 一个读写csv文件的C#类 2022-11-06
- unity实现动态排行榜 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22
- C# 调用WebService的方法 2023-03-09
- C#类和结构详解 2023-05-30