發布時間:2020-11-30 15:42 作者:獨孤劍 閱讀:5251
using System; namespace DemoConsole { class Program { static void Main(string[] args) { // base64字符串 string base64Str = ""; byte[] bytes = Convert.FromBase64String(base64Str); // 寫入文件到指定位置 using (System.IO.FileStream fs = new System.IO.FileStream("D:\\001.jpg", System.IO.FileMode.Create, System.IO.FileAccess.Write)) { fs.Write(bytes, 0, bytes.Length); fs.Flush(); } } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞