我正在使用一个位于here的ICAP github项目,该项目基于JBoss Netty编解码器。我当前的问题可能是由于我无法正确理解Netty处理程序和Httpchunks以及缺乏编程技能而导致的,原因是我不知道如何成功地将返回的数据写入文件。到目前为止,基本上我的代码基本上可以将内容推送到文件,但是无论我丢失数据,未正确执行数据还是将其放错了位置,该文件总是损坏的,我不确定。代码如下。我想要的任何建议或帮助。预先感谢。
package ch.mimo.netty.example.icap.preview;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.channel.SimpleChannelUpstreamHandler;
import ch.mimo.netty.handler.codec.icap.DefaultIcapResponse;
import ch.mimo.netty.handler.codec.icap.IcapChunk;
import ch.mimo.netty.handler.codec.icap.IcapChunkTrailer;
import ch.mimo.netty.handler.codec.icap.IcapRequest;
import ch.mimo.netty.handler.codec.icap.IcapResponse;
import ch.mimo.netty.handler.codec.icap.IcapResponseStatus;
import ch.mimo.netty.handler.codec.icap.IcapVersion;
public class IcapServerHandler extends SimpleChannelUpstreamHandler {
private boolean continueWasSent;
@Override
public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) throws Exception {
Object msg = e.getMessage();
if(msg instanceof IcapRequest) {
IcapRequest request = (IcapRequest)e.getMessage();
System.out.println(request.toString());
} else if(msg instanceof IcapChunkTrailer) {
System.out.println(msg.toString());
if(!continueWasSent) {
continueWasSent = true;
// sending 100 continue in order to receive the rest of the message
IcapResponse response = new DefaultIcapResponse(IcapVersion.ICAP_1_0,IcapResponseStatus.CONTINUE);
ctx.getChannel().write(response);
} else {
// sending 204 No Content response
IcapResponse response = new DefaultIcapResponse(IcapVersion.ICAP_1_0,IcapResponseStatus.NO_CONTENT);
ctx.getChannel().write(response);
}
} else if(msg instanceof IcapChunk) {
IcapChunk request3 = (IcapChunk)e.getMessage();
System.out.println(request3.getContent().toString(Charset.defaultCharset()));
testfile = "C:\\Users\\dan\\Desktop\\iso\\netty\\" + output;
buffer = request3.getContent();
ByteBuffer nioBuffer = buffer.toByteBuffer();
FileOutputStream fos = new FileOutputStream(testfile);
FileChannel channel = fos.getChannel();
while (nioBuffer.hasRemaining()) {
channel.write(nioBuffer);
}
fos.flush();
fos.close();
System.out.println(msg);
}
}
}
此外,对于小型文本文件,我应该能够在本地成功重建文件。但是,当我尝试生成较大的.docx文件时,说我无法获得完整大小,并且文件已损坏。在这一点上,我真的不确定下一步该怎么做。