org.apache.mina.filter.codec.ProtocolDecoderException:

org.apache.mina.filter.codec.ProtocolDecoderException: org.apache.mina.core.buffer.BufferDataException: dataLength: -1905626763 (Hexdump: 8E 6A 71 75 65 72 79 2E 65 61 73 79 75 69 2E 6D 69 6E 2E 6A 73 E5 BC 95 E7 94 A8 2E 0D 0A E9 BB 98 ....

原因:传输的文件过大超过了默认的缓存

解决:

		factory.setDecoderMaxObjectSize(Integer.MAX_VALUE);// 设定后服务器可以接收大数据 
		factory.setEncoderMaxObjectSize(Integer.MAX_VALUE); 

以验证,可行。

你可能感兴趣的:(异常)