0

我已经通过 Netty 服务器(图像、html)从 Android 资产中提供文件。诸如 html 之类的文本文件保存为 .mp3 以禁用压缩(我需要一个 InputStream!)

我的管道看起来像这样:

    pipeline.addLast("decoder", new HttpRequestDecoder());
    pipeline.addLast("aggregator", new HttpChunkAggregator(65536));
    pipeline.addLast("encoder", new HttpResponseEncoder());
    pipeline.addLast("chunkedWriter", new ChunkedWriteHandler());

    pipeline.addLast("handler", new AssetsServerHandler(context));

我的处理程序是:

public class AssetsServerHandler extends SimpleChannelUpstreamHandler {

    public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {

        // some checks

        final FileInputStream is;
        final AssetFileDescriptor afd;
        try {
            afd = assetManager.openFd(path);
            is = afd.createInputStream();   
        } catch(IOException exc) {
            sendError(ctx, NOT_FOUND);
            return;
        }

        final long fileLength = afd.getLength();

        HttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
        setContentLength(response, fileLength);

        final Channel ch = e.getChannel();
        final ChannelFuture future;
        ch.write(response);
        future = ch.write(new ChunkedStream(is));
        future.addListener(new ChannelFutureListener() {
            @Override
            public void operationComplete(ChannelFuture future) throws Exception {
                future.getChannel().close();
            }
        });
        if (!isKeepAlive(request)) {
            future.addListener(ChannelFutureListener.CLOSE);
        }
    }
    // other stuff
}

使用该处理程序,我的响应至少被截断了一个字节。如果我更改ChunkedStreamChunkedNioFile(因此使用 ais.getChannel()而不是is它的构造函数)-一切正常。

请帮助我了解 ChunkedStream 有什么问题。

4

1 回答 1

1

你的代码对我来说很合适。AssetFileDescriptor 返回的 FileInputStream 是否包含“所有字节”?您可以通过单元测试来检查这一点。如果它没有错误,那么它是netty中的错误。我大量使用 ChunkInputStream 并且从未遇到过这样的问题,但也许它真的取决于 InputStream 的性质。

如果您可以编写一个测试用例并在 netty 的 github 上打开一个问题,那就太好了。

于 2012-01-12T08:27:28.373 回答