在post提交时,有一些相对较大的要进行提交,采用post方式
httppost post = new httppost(url);
bytedarrayoutputstream arrayoutputstream = new bytedarrayoutputstream();
gzipoutputstream gzioutputstream = new gzipoutputstream(arrayoutputstream);
// 写入数据
bytearrayentity arrayentity = new bytearrayentity(arrayoutputstream.tobytearray());
post.setentiy(arrayentity);
// 提交