2

私は Java/Android を初めて使用し、Web ページの応答を取得するコードを持っています。私はこのようなコードを持っていますが、何らかの理由でBufferedReader'sin.readLine()は常に null を返します。

URL url = new URL(endPoint);
connection = (HttpURLConnection) url.openConnection();

connection.setConnectTimeout(connectionTimeout);
connection.setReadTimeout(readTimeout);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setRequestProperty("Content-Length", "" + Integer.toString(encodedParams.getBytes().length));
connection.setRequestProperty("Content-Language", "en-US");
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);

// Setup the POST payload
DataOutputStream wr = new DataOutputStream(connection.getOutputStream());
wr.writeBytes(encodedParams);
wr.flush();
wr.close();

// Read the response
InputStream inputStream = connection.getInputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"));

どこで間違いを犯しているのかわかりません。

前もって感謝します。

4

1 に答える 1

0

試す

connection.connect();

回答を読む前に

于 2013-01-22T12:01:17.620 に答える