URL から XML ファイルを取得しようとしていますが、応答がなく、文字列 xml が null であるためコードが停止します。何が問題なのか教えていただけますか?
public String getXmlFromUrl(String url) {
String xml = null;
try {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
// I printed the response here but I got nothing !
HttpEntity httpEntity = httpResponse.getEntity();
xml = EntityUtils.toString(httpEntity);
return xml;
} catch (Exception e) {
e.printStackTrace();
}
具体的にお答えください。ご協力いただきありがとうございます。