BlackBerry - GZip 解压问题

发布于 2024-07-25 05:48:29 字数 1042 浏览 3 评论 0 原文

我在使用 RIM 压缩 API,我无法使其按照文档中的描述工作。
如果我使用 win gzip 工具 gzip 纯文本文件,请将 gz 添加到黑莓项目的资源中,并在应用程序中尝试解压缩它,将会出现无限循环,gzis.read()永远不会返回-1...

try
{
    InputStream inputStream = getClass().getResourceAsStream("test.gz");
    GZIPInputStream gzis = new GZIPInputStream(inputStream);
    StringBuffer sb = new StringBuffer();

    char c;
    while ((c = (char)gzis.read()) != -1)           
    {
        sb.append(c);
    }

    String data = sb.toString();
    add(new RichTextField(data));
    gzis.close();
}
catch(IOException ioe)
{
}

压缩后的内容在gzis.read()中重复65535值。 我发现的唯一解决方法是愚蠢的

while ((c = (char)gzis.read()) != -1 && c != 65535) 

但我很好奇原因是什么,我做错了什么,以及为什么65535

There is a strange problem I've run in using RIM compression API, I can't make it work as it's described in documentation.
If I gzip plain text file using win gzip tool, add gz to resources of blackberry project and in app try to decompress it, there will be infinite loop, gzis.read() never return -1...

try
{
    InputStream inputStream = getClass().getResourceAsStream("test.gz");
    GZIPInputStream gzis = new GZIPInputStream(inputStream);
    StringBuffer sb = new StringBuffer();

    char c;
    while ((c = (char)gzis.read()) != -1)           
    {
        sb.append(c);
    }

    String data = sb.toString();
    add(new RichTextField(data));
    gzis.close();
}
catch(IOException ioe)
{
}

After the compressed content there is repetition of 65535 value in gzis.read(). The only workaround I've found is dumb

while ((c = (char)gzis.read()) != -1 && c != 65535) 

But I'm curious what is the reason, what I'm doing wrong, and why 65535?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-08-01 05:48:29

char 是无符号的 16 位数据类型。 -1 转换为 char 是 65535。

更改为:

int i;
while ((i = gzis.read()) != -1)           
{
  sb.append((char)i);
}

它应该可以工作。 RIM API 上的示例不可能工作,因为没有任何字符会等于 -1。

char is an unsigned, 16-bit data type. -1 cast to a char is 65535.

Change to:

int i;
while ((i = gzis.read()) != -1)           
{
  sb.append((char)i);
}

And it should work. The example on RIM's API can't possibly work, as no char will ever equal -1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文