getInputStream()
がnullを返す。私はそれを探しましたが、何の助けも得られませんでした。誰もそれを解決する方法を教えてくださいできますか?HttpURLConnection getInputStreamがnullを返す
HttpURLConnection urlConnection = null;
InputStream inputStream = null;
try {
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setReadTimeout(100000 /* milliseconds */);
urlConnection.setConnectTimeout(150000 /* milliseconds */);
urlConnection.setRequestMethod("GET");
urlConnection.connect();
// If the request was successful (response code 200),``
// then read the input stream and parse the response.
if (urlConnection.getResponseCode() == 200) {
inputStream = urlConnection.getInputStream();
jsonResponse = readFromStream(inputStream);
} else {
// Log.e(LOG_TAG, "Error response code: " + urlConnection.getResponseCode());
}
}
完全なエラースタックトレースを確認できますか? –