コードを実行しようとすると、次のエラーが発生します。
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();