文件流转base64字符串
Posted masterlin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件流转base64字符串相关的知识,希望对你有一定的参考价值。
public static string GetBase64Data()
{
string path = @"C: xt.jpg";
FileStream filestream = new FileStream(path, FileMode.Open);
byte[] bt = new byte[filestream.Length];
//调用read读取方法
filestream.Read(bt, 0, bt.Length);
string base64Str = Convert.ToBase64String(bt);
filestream.Close();
return base64Str;
}
以上是关于文件流转base64字符串的主要内容,如果未能解决你的问题,请参考以下文章