今天就跟大家聊聊有關(guān)Android中怎么訪問Internet,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)公司專注于賈汪網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供賈汪營(yíng)銷型網(wǎng)站建設(shè),賈汪網(wǎng)站制作、賈汪網(wǎng)頁設(shè)計(jì)、賈汪網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務(wù),打造賈汪網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供賈汪網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序定制開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了林州免費(fèi)建站歡迎大家使用!
Android應(yīng)用訪問Internet,首先需要賦予應(yīng)用有訪問Internet的權(quán)限:在AndroidManifest.xml中添加:
然后實(shí)現(xiàn)DrawMap()如下:
private void drawMap(){ try{ graphics2D.clear(Color.WHITE); graphics2D.Reset(); for(int x=6;x<8;x++) { for(int y=3;y<5;y++){ String urlString="http://www.mapdigit.com/guidebeemap"; urlString+="/maptile.php?type=MICROSOFTMAP"; urlString+="&x="+x+"&y="+y+"&z=14"; URL url=new URL(urlString); URLConnection connection=url.openConnection(); HttpURLConnection httpConnection=(HttpURLConnection)connection; int responseCode=httpConnection.getResponseCode(); if(responseCode==HttpURLConnection.HTTP_OK){ InputStream stream=httpConnection.getInputStream(); Bitmap bitmap=BitmapFactory.decodeStream(stream); int []buffer=new int[bitmap.getHeight() * bitmap.getWidth()]; bitmap.getPixels(buffer, 0, bitmap.getWidth(), 0, 0, bitmap.getWidth(), bitmap.getHeight()); graphics2D.drawImage(buffer,bitmap.getWidth(), bitmap.getHeight(),(x-6)*256,(y-3)*256); } } } graphic2dView.refreshCanvas(); }catch(Exception e){ } }
Android中訪問Internet類主要定義在java.net.* 和android.net.*包中。上面顯示結(jié)果如下:
看完上述內(nèi)容,你們對(duì)Android中怎么訪問Internet有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。