是否可以爲HttpPost設置2個實體?像:使用Gzip和NameValuePair的Android HttpPost
HttpPost post = new HttpPost("http://www.abc.com");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("A",
a));
nameValuePairs.add(new BasicNameValuePair("B", b));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));
post.setHeader("Accept-Encoding", "gzip");
ByteArrayEntity bae = new ByteArrayEntity(compress(json));
post.setEntity(bae);
HttpResponse resp;
resp = client.execute(post);
我試圖實現告訴服務器,有一些參數和zip文件。
看到我編輯過的鏈接,希望對你有所幫助。 – amity
會測試一下。謝謝! – Maurice
這些鏈接對於實現我需要的一點調整非常有用,謝謝! – Maurice