我正在尝试在C#中转换此Java代码代码,但我对此有些困惑。这是Java代码:
我的尝试是以下内容,但是GIS.Read中有一些错误,因为它想要一个字节[],而不是字符串构造函数,出于相同的原因。
public static String decompress(InputStream input) throws IOException
{
final int BUFFER_SIZE = 32;
GZIPInputStream gis = new GZIPInputStream(input, BUFFER_SIZE);
StringBuilder string = new StringBuilder();
byte[] data = new byte[BUFFER_SIZE];
int bytesRead;
while ((bytesRead = gis.read(data)) != -1) {
string.append(new String(data, 0, bytesRead));
}
gis.close();
// is.close();
return string.toString();
}
我希望得到一个可读的字符串。
您需要首先将字节转换为字符。为此,您需要知道编码。
在您的代码中,您可以用Encoding.UTF8.GetString(data, 0, bytesRead)
替换new String(data, 0, bytesRead)
来做到这一点。但是,我的处理方式略有不同。
StreamReader
是一个有用的类,可以将字节读取为C#中的文本。只需将其包裹在您的GZipStream
周围,然后让它做魔术。
public static string Decompress(Stream input)
{
// note this buffer size is REALLY small.
// You could stick with the default buffer size of the StreamReader (1024)
const int BUFFER_SIZE = 32;
string result = null;
using (var gis = new GZipStream(input, CompressionMode.Decompress, leaveOpen: true))
using (var reader = new StreamReader(gis, Encoding.UTF8, true, BUFFER_SIZE))
{
result = reader.ReadToEnd();
}
return result;
}