OutOfMemoryError

当设置成1024 * 1024时,

byte[] outPut= new byte[1024 * 1024]

出现OutOfMemoryError

??内存不足

还是改回来

byte[] outPut= new byte[4 * 1024]

原文地址:https://www.cnblogs.com/superchao8/p/2045591.html