就是想很简单的获取百度的源码,开了一个子线程,使用HttpURLConnection,却不知到为什么一直获取失败。求高手告之原因。
public class MainActivity extends Activity implements View.OnClickListener
{
public static final int SHOW_RESPONSE = 0;
private Button sendRequest;
private TextView responseText;
private Handler handler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case SHOW_RESPONSE:
String response = (String) msg.obj;
// 在这里进行UI操作,将结果显示到界面上
responseText.setText(response);
}
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.web_layout);
sendRequest = (Button) findViewById(R.id.send_request);
responseText = (TextView) findViewById(R.id.response_text);
sendRequest.setOnClickListener(this);
}
@Override
public void onClick(View v) {
if (v.getId() == R.id.send_request) {
sendRequestWithHttpURLConnection();
}
}
private void sendRequestWithHttpURLConnection() {
// 开启线程来发起网络请求
new Thread(new Runnable() {
@Override
public void run() {
HttpURLConnection connection = null;
try {
URL url = new URL("http://www.baidu.com/");
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setConnectTimeout(8000);
connection.setReadTimeout(8000);
connection.setDoInput(true);
connection.setDoOutput(true);
if(connection.getResponseCode()!=200)
{
Log.d("haha", "code is "+connection.getResponseCode());
}
InputStream in = connection.getInputStream();
// 下面对获取到的输入流进行读取
BufferedReader reader = new BufferedReader(
new InputStreamReader(in));
StringBuilder response = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
Message message = new Message();
message.what = SHOW_RESPONSE;
// 将服务器返回的结果存放到Message中
message.obj = response.toString();
handler.sendMessage(message);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (connection != null) {
connection.disconnect();
}
}
}
}).start();
}
}
布局代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/send_request"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send Request" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/response_text"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>
log里没有任何异常信息报出,url的返回码为302.
真的很疑惑,因为代码检查过很多次了觉得没有问题,求助!!!!!
본 코드 자체에는 문제가 없습니다. 302님도 방문하신 URL 주소에 문제가 있음을 알려드렸습니다. 현재 바이두는 전체 사이트 https를 사용하고 있으니 테스트는
https://www.baidu.com
를 이용하시기 바랍니다. 그런데http://www.baidu.com
은 브라우저에서 다시 접속할 수 있는 페이지인데, 뭐가 문제인가요? 이는 Baidu가 점프를 하고 자동으로 https://www.baidu.com으로 이동하기 때문입니다. 이 점프는 302 페이지에서 수행되며 기본적으로 감지할 수 없습니다. 이것이 200 대신 302를 얻는 이유입니다.위 사람 말이 맞아요.
따라서 두 가지 작업을 수행해야 합니다.
URL을 다음으로 바꾸세요: https://www.baidu.com
URLConnection, HttpURLConnection을 HttpsURLConnection으로 교체하세요.