C# 이진 문자열을 로컬에 저장

黄舟
풀어 주다: 2017-02-21 11:01:36
원래의
1935명이 탐색했습니다.

C# 将二进制字符串保存到本地

  #region 将文件保存到本地
        /// <summary>
        /// 将文件保存到本地
        /// </summary>
        /// <param name="psContent">文件的二进制数据字符串</param>
        /// <param name="psFileName">文件名称,必须带后缀</param>
        private void SaveFile(string psContent, string psFileName)
        {
            byte[] accessory = Convert.FromBase64String(psContent);
            //System.AppDomain.CurrentDomain.BaseDirectory获取程序的基目录
            string vsAccessoryPath = System.AppDomain.CurrentDomain.BaseDirectory.TrimEnd(&#39;\\&#39;) + &#39;\\&#39; + psFileName;
            FileStream fileStream = null;
            try
            {
                //File.Create Method (String):Creates or overwrites a file in the specified path.
                fileStream = File.Create(vsAccessoryPath);
            }
            catch (System.IO.IOException e)
            {
                
            }
            //FileStream.Write Method:Writes a block of bytes to the file stream.
            fileStream.Write(accessory, 0, accessory.Length);
            //FileStream.Flush 方法:清除该流的所有缓冲区,使得所有缓冲的数据都被写入到基础设备。
            fileStream.Flush();
            //FileStream.Close Method:Closes the file and releases any resources associated with the current file stream.
            fileStream.Close();
        }
        #endregion
로그인 후 복사

假如文件流保存在数据库中:


string vsSql = "";//从数据库中获取待转换保存文件的内容(比如,之前把文件转换为字节流保存到数据库中了)
DataSet dsContent = 获取DataSet的数据库操作;
byte[] vbContent = (byte[])(dsContent.Tables[0].Rows[0]["数据库中保存文件内容的列名"]);
string vsContent = Convert.ToBase64String(vbContent);
로그인 후 복사

字节流保存在数据库中的样子:


以上就是C# 将二进制字符串保存到本地的内容,更多相关内容请关注PHP中文网(www.php.cn)!


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!