我试图在 bash (Linux) 中找到与 C# 代码等效的代码。
我有这个 C# 代码:
// C# to convert a byte array to a string.
byte [] dBytes = ...
string str;
System.Text.UTF8Encoding enc = new System.Text.UTF8Encoding();
str = enc.GetString(dBytes);
我在 Fedora Linux 机器上运行 bash。
我在 bash 中得到一个文件,其中包含所有字节数组作为由空格分隔的文本,如下所示:
“72 0 101 0 108 0 108 0 111 0 32 0 87 0 111 0 114 0 108 0 100 0 33 0”
有任何想法吗?