我在Android手機上有此代碼。如何打印出HttpResponse返回的消息?
URI uri = new URI(url);
HttpPost post = new HttpPost(uri);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(post);
我有了在頁面加載此
Response.Output.Write("It worked");
我想抓住從HttpReponse這個響應,並打印出來一個asp.net Web窗體應用程序。我該怎麼做呢?
我試過response.getEntity().toString()
但它似乎打印出內存中的地址。
感謝
的Android API版本,這是否成爲可在?我可能不得不重寫來自代碼:D – 2010-04-04 00:26:15
我認爲它從一開始就一直存在,或者至少從Android 0.9開始。它是標準HttpClient 4.x軟件包的一部分。 – CommonsWare 2010-04-04 00:32:30