Java 根據(jù)url下載網(wǎng)絡(luò)資源
URL:統(tǒng)一資源定位符
例如:https://www.baidu.com
URL【統(tǒng)一資源定位符】:定位資源的,定位互聯(lián)網(wǎng)上的某一個(gè)資源。
DNS 域名解析:www.baidu.com【某一域名】指向 39.156.69.79【某一網(wǎng)站空間IP】
URL 組成:協(xié)議://ip地址:端口/項(xiàng)目名/資源
package lesson04;import java.net.MalformedURLException;import java.net.URL;/** * URL:統(tǒng)一資源定位符 */public class URLDemo1 { public static void main(String[] args) throws MalformedURLException { URL url = new URL('http://localhost:8080/helloworld/index.jsp?username=kuangshen&password=123'); //協(xié)議名 System.out.println(url.getProtocol()); //主機(jī)名-主機(jī)ip System.out.println(url.getHost()); //端口 System.out.println(url.getPort()); //地址-文件路徑 System.out.println(url.getPath()); //文件-全路徑 System.out.println(url.getFile()); //查詢部分-參數(shù) System.out.println(url.getQuery()); }}
URL下載資源
package lesson04;import java.io.FileOutputStream;import java.io.InputStream;import java.net.HttpURLConnection;import java.net.URL;/** * URL下載資源 */public class URLDown { public static void main(String[] args) throws Exception { //1、下載地址 URL url = new URL('https://m10.music.126.net/20201121104035/2c5eb73ce4421a090b62647f6c486e2c/yyaac/obj/wonDkMOGw6XDiTHCmMOi/3625445007/7d37/4109/d0ef/d56e8176f5789a4e6f8b2173ce500bf6.m4a'); //2、連接到這個(gè)資源 HTTP HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); InputStream inputStream = urlConnection.getInputStream(); FileOutputStream fos = new FileOutputStream('f6.m4a'); byte[] buffer = new byte[1024]; int len; while ((len = inputStream.read(buffer)) != -1){ fos.write(buffer, 0, len); //寫(xiě)出這個(gè)數(shù)據(jù) } //關(guān)閉 fos.close(); inputStream.close(); //斷開(kāi)連接 urlConnection.disconnect(); }}
效果一覽
以上就是Java 根據(jù)url下載網(wǎng)絡(luò)資源的詳細(xì)內(nèi)容,更多關(guān)于Java 下載網(wǎng)絡(luò)資源的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. 利用CSS制作3D動(dòng)畫(huà)2. Java GZip 基于內(nèi)存實(shí)現(xiàn)壓縮和解壓的方法3. python 浮點(diǎn)數(shù)四舍五入需要注意的地方4. 完美解決vue 中多個(gè)echarts圖表自適應(yīng)的問(wèn)題5. Springboot 全局日期格式化處理的實(shí)現(xiàn)6. python開(kāi)發(fā)一款翻譯工具7. JAMon(Java Application Monitor)備忘記8. idea配置jdk的操作方法9. 存儲(chǔ)于xml中需要的HTML轉(zhuǎn)義代碼10. SpringBoot+TestNG單元測(cè)試的實(shí)現(xiàn)
