使用Netty提供文件 - 响应被截断一个字节

时间:2012-01-11 20:59:04

标签: java android nio netty android-assets

我通过Netty服务器(图片,html)从Android资源提供文件。 像hmp这样的文本文件保存为.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
}

使用该处理程序,我的目标被截断了至少一个字节。如果我将ChunkedStream更改为ChunkedNioFile(因此使用is.getChannel()代替is作为构造函数) - 一切都运行良好。

请帮我理解ChunkedStream的错误。

1 个答案:

答案 0 :(得分:1)

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

如果你能写一个测试用例并在netty的github上打开一个问题,那会很好。