-3

コードを実行しようとすると、次のエラーが発生します。

The method parse() is undefined for the type HttpResponse

これが私のコードです:

post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = client.execute(post);
strResp = EntityUtils.toString(response.getEntity());
Document document = response.parse();
4

3 に答える 3

1

そのような方法はありませparse()HttpResponse

于 2013-09-11T14:24:29.150 に答える