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# 文件字符串互轉內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!