c#二进制读取文件与文本转换

//将文件读取为流格式
Stream expectedSteam = new FileStream(scriptpath, FileMode.Open, FileAccess.Read);
//创建Byte数组
byte[] bl = new byte[expectedSteam.Length];
//读取流文件字节,保存到对象中
expectedSteam.Read(bl, 0, bl.Length);
string str2 = Encoding.Default.GetString(bl);//二进制转字符
//string str2= Encoding.Unicode.GetString(bl, 0, bl.Length);//二进制转汉字文本
//创建文件
string path = @"C:\Users\Administrator\Desktop\path.py";
File.Exists(path);
StreamWriter sw = File.CreateText(path);
sw.WriteLine(str2);
sw.Close();
//字符串转二进制
public Byte[] SByteList2ByteList(string s)
{
      Byte[] ret = new Byte[s.Length / 2];
      for (int i = 0; i < s.Length / 2; i++)
      {
           ret[i] = Convert.ToByte(s.Substring(i * 2, 2), 16);
      }
            return ret;
}
//转十六进制
public String ByteList2SByteList(Byte[] blist)
        {
            StringBuilder strB = new StringBuilder();
            for (int i = 0; i < blist.Length; i++)
            {
                strB.Append(blist[i].ToString("X2"));
            }
            return strB.ToString();
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值