2

我试图在 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”

有任何想法吗?

4

2 回答 2

0

这些字节采用 UTF-16LE 编码,而不是 UTF-8。你的 python 脚本应该是:

file = codecs.open('xx.txt', 'r', 'utf-16-le')
ustring = file.read() #this is a unicode string, not a normal python string
print ustring
于 2013-03-07T08:51:32.147 回答
0

最终我在 python 中做到了,并从我的 bash 脚本中调用了 python 脚本:

file = open('xx.txt', 'r')
inputText = file.read()
split = inputText.split(" ")
noZeros= filter (lambda a: a != "0", split)
results = map(int, noZeros)
final = "".join(map(chr, results))
print final
于 2013-03-06T12:38:08.030 回答