Android中實現地址欄輸入網址能瀏覽該地址網頁源碼並操作訪問網路

來源:互聯網
上載者:User


首先實現簡單布局: 複製代碼 代碼如下:<EditText
android:id="@+id/et_url"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:ems="10"
android:text="@string/url_text" >
<requestFocus android:layout_width="match_parent" />
</EditText>
<Button
android:id="@+id/btn_ie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/et_url"
android:onClick="sendHttp"
android:text="@string/btn_text" />
<ScrollView
android:id="@+id/sv_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/btn_ie" >
<TextView
android:id="@+id/tv_ie"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/ie_text" />
</ScrollView>

在Stirng中 複製代碼 代碼如下:<string name="url_text">http://luochuang.iteye.com/blog/1606231</string>
<string name="btn_text">瀏覽</string>
<string name="ie_text">顯示瀏覽網頁內容</string>

建立類檔案 :

首先MainActivity 中代碼 : 複製代碼 代碼如下:public class MainActivity extends Activity {
// 聲明控制項
public EditText et_url;
public TextView tv_ie;
// 網路操作類
public NetWorkUtils netWorkUtils;
private Handler handler;
public String content;
public static final int TEXT = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 擷取et_url對象
et_url = (EditText) findViewById(R.id.et_url);
tv_ie = (TextView) findViewById(R.id.tv_ie);
// 執行個體化
netWorkUtils = new NetWorkUtils(this);
// 執行個體化這個處理者
handler = new Handler() {
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case TEXT:
tv_ie.setText(content);// 設定顯示的文本
break;
default:
break;
}
}
};
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void sendHttp(View v) {
// 設定網路
boolean flag = netWorkUtils.setActiveNetWork();
if (flag) {
// run方法 執行完畢 這個線程就消耗了
// 子線程
new Thread(new Runnable() {
@Override
public void run() {
send();
handler.sendEmptyMessage(TEXT);
}
}).start();
}
}
// 發送請求操作
@SuppressLint("NewApi")
public void send() {

// 擷取url的path路徑
String path = et_url.getText().toString();
if (path.isEmpty()) {
Toast.makeText(MainActivity.this, "訪問 的url地址不可為空",
Toast.LENGTH_LONG).show();
} else {
content = HttpUtils.sendGet(path);
}

/*// 設定網路
netWorkUtils.setActiveNetWork();
// 擷取url的path路徑
String path = et_url.getText().toString();
if (path.isEmpty()) {
Toast.makeText(MainActivity.this, "訪問 的url地址不可為空",
Toast.LENGTH_LONG).show();
} else {
try {
// 設定訪問的url
URL url = new URL(path);
// 開啟請求
HttpURLConnection httpURLConnection = (HttpURLConnection) url
.openConnection();
// 佈建要求的資訊
httpURLConnection.setRequestMethod("GET");
// 判斷伺服器是否響應成功
if (httpURLConnection.getResponseCode() == 200) {
// 擷取響應的輸入資料流對象
InputStream is = httpURLConnection.getInputStream();
// 位元組輸出資料流
ByteArrayOutputStream bops = new ByteArrayOutputStream();
// 讀取資料的緩衝區
byte buffer[] = new byte[1024];
// 讀取長度記錄
int len = 0;
// 迴圈讀取
while ((len = is.read(buffer)) != -1) {
bops.write(buffer, 0, len);
}
// 把讀取的內容轉換成byte數組
byte data[] = bops.toByteArray();
// 把轉換成字串
content = new String(data);
} else {
Toast.makeText(MainActivity.this, "伺服器響應錯誤",
Toast.LENGTH_LONG).show();
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}*/
}
}

複製代碼 代碼如下:public class HttpUtils {

public static String sendGet(String path) {
String content = null;
try {
// 設定訪問url
URL url = new URL(path);
// 開啟請求
HttpURLConnection httpURLConnection = (HttpURLConnection) url
.openConnection();
// 佈建要求的資訊
httpURLConnection.setRequestMethod("GET");
// 佈建要求是否逾時時間
httpURLConnection.setConnectTimeout(5000);
// 判斷伺服器是否響應成功
if (httpURLConnection.getResponseCode() == 200) {
// 擷取響應的輸入資料流對象
InputStream is = httpURLConnection.getInputStream();
byte data[] = StreamTools.isToData(is);
// 把轉換成字串
content = new String(data);
// 內容編碼方式
if (content.contains("gb2312")) {
content = new String(data, "gb2312");
}
}
// 中斷連線
httpURLConnection.disconnect();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return content;
}
}

複製代碼 代碼如下:public class StreamTools {
public static byte[] isToData(InputStream is) throws IOException{

//位元組輸出資料流
ByteArrayOutputStream bops = new ByteArrayOutputStream();
//讀取資料的緩衝區
byte buffer[] = new byte[1024];
//讀取長度 的記錄
int len = 0;
//迴圈讀取
while((len = is.read(buffer)) != -1){
bops.write(buffer, 0, len);
}
//把讀取的內容轉換成 byte數組
byte data[] = bops.toByteArray();

return data;

}
}

複製代碼 代碼如下:public class NetWorkUtils {
private Context context;
// 網路連結管理對象
public ConnectivityManager connectivityManager;
public NetWorkUtils(Context context) {
this.context = context;
// 擷取網路連結的對象
connectivityManager = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
}
//public void setActiveNetWork() {
public boolean setActiveNetWork() {
boolean flag = false;
// 擷取可用的網路連結化物件
NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();
if (networkInfo == null) {
new AlertDialog.Builder(context)
.setTitle("網路不可用")
.setMessage("可以設定網路?")
.setPositiveButton("確認",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int which) {
Toast.makeText(context, "點擊確認",
Toast.LENGTH_LONG).show();
// 聲明意圖
Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory("android.intent.category.LAUNCHER");
intent.setComponent(new ComponentName(
"com.android.settings",
"com.android.settings.Settings"));
intent.setFlags(0x10200000);
// 執行意圖
context.startActivity(intent);
}
})
.setNegativeButton("取消",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int which) {
}
// 必須.show();
}).show();
}
//判斷網路是否可用
if(networkInfo!=null){
flag=true;
}
return flag;
}
}

然後就是要在AndroidManifest.xml中添加 可以訪問網路的許可權 複製代碼 代碼如下:<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.