关于C#:我正在使用二进制阅读器将字符串转换为字节,如何将字节还原为相同的字符串


i am converting string to bytes using binary reader, how to reverse the bytes back to same string

本问题已经有最佳答案,请猛点这里访问。

如何将字节转换为字符串,我使用下面的代码将字符串转换为字节。我想用代码把那个字节转换成字符串。

1
2
3
4
5
6
7
8
9
10
11
12
public byte[] FileToByteArray(string fileName)
{
    byte[] buff = null;
    FileStream fs = new FileStream(fileName,
                                   FileMode.Open,
                                   FileAccess.Read);
    BinaryReader br = new BinaryReader(fs);
    long numBytes = new FileInfo(fileName).Length;
    //buff = br.ReadBytes((int)numBytes);
    buff = br.ReadBytes(16);
    return buff;
}

字母名称(P)也有一个快速的方式转换一个脱衣到Byte Array(p)字母名称