您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“怎么用C#實現(xiàn)文件與字符串互轉(zhuǎn)”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
將文件與為字符串互轉(zhuǎn)
開發(fā)工具: 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; } } //調(diào)用文件轉(zhuǎn)base64 private void btnBase64_Click(object sender, EventArgs e) { textBox2.Text = FileToBase64String(textBox1.Text); MessageBox.Show("成功"); } //調(diào)用base64轉(zhuǎn)文件 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("成功"); } } //文件轉(zhuǎn)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轉(zhuǎn)文件 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; } }
觀察代碼可以發(fā)現(xiàn),其實在上一篇做壓縮的時候,也是用到了base64,所以如果是單純的要操作文件的,只需要對文件進行流操作即可。
“怎么用C#實現(xiàn)文件與字符串互轉(zhuǎn)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。