当前文章收录状态:
查询中...
JAVA代码:
import java.io.File;import java.io.FileOutputStream;import java.io.InputStream;import java.net.HttpURLConnection;import java.net.URL;import java.nio.charset.StandardCharsets;import java.util.ArrayList;public class Element {static String fileP = "C:\\Users\\ZouYangMing\\Desktop\\element-ui\\";static String urlP = "https://unpkg.com/browse/element-ui@2.15.7/";static String urlF = "https://unpkg.com/element-ui@2.15.7/";public static void main(String[] args){try {GetPage("");} catch (Exception e) {e.printStackTrace();}}static void GetPage(String after) throws Exception {System.out.println(urlP + after);new File(fileP + after).mkdir();HttpURLConnection http = (HttpURLConnection) (new URL(urlP + after)).openConnection();http.setRequestMethod("GET");http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36");http.connect();if(http.getResponseCode() == 200) {InputStream inputStream = http.getInputStream();byte [] buffer = new byte[1024];ArrayList<byte []> byteList = new ArrayList<>();ArrayList<Integer> byteLength = new ArrayList<>();int length;int totalLength = 0;while( (length = inputStream.read(buffer)) != -1 ) {byteList.add(buffer);byteLength.add(length);totalLength += length;buffer = new byte[1024];}http.disconnect();byte [] all;all = new byte[totalLength];totalLength = 0;while(byteList.size() != 0) {System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0));totalLength += byteLength.get(0);byteList.remove(0);byteLength.remove(0);}String content = new String(all, StandardCharsets.UTF_8);all = null;content = content.split("tbody")[1];String [] us = content.split("href=\"");for(int i = 1; i < us.length; i ++) {String href = us[i].split("\"", 2)[0];if(href.equals("../")) {continue;}if(href.charAt(href.length() - 1) == '/') {GetPage(after + href);} else {GetFile(after + href);}}} else {GetPage(after);}}static void GetFile(String url) throws Exception{System.out.println(url);HttpURLConnection http;http = (HttpURLConnection) (new URL(urlF + url)).openConnection();http.setRequestMethod("GET");http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36");http.connect();if(http.getResponseCode() == 200) {InputStream inputStream = http.getInputStream();byte [] buffer = new byte[1024];ArrayList<byte []> byteList = new ArrayList<>();ArrayList<Integer> byteLength = new ArrayList<>();int length;int totalLength = 0;while( (length = inputStream.read(buffer)) != -1 ) {byteList.add(buffer);byteLength.add(length);totalLength += length;buffer = new byte[1024];}http.disconnect();byte [] all;all = new byte[totalLength];totalLength = 0;while(byteList.size() != 0) {System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0));totalLength += byteLength.get(0);byteList.remove(0);byteLength.remove(0);}File f = new File(fileP + url.replaceAll("/", "\\\\"));f.createNewFile();FileOutputStream fos = new FileOutputStream(f, false);fos.write(all);fos.flush();fos.close();} else {GetFile(url);}}}import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; import java.util.ArrayList; public class Element { static String fileP = "C:\\Users\\ZouYangMing\\Desktop\\element-ui\\"; static String urlP = "https://unpkg.com/browse/element-ui@2.15.7/"; static String urlF = "https://unpkg.com/element-ui@2.15.7/"; public static void main(String[] args){ try { GetPage(""); } catch (Exception e) { e.printStackTrace(); } } static void GetPage(String after) throws Exception { System.out.println(urlP + after); new File(fileP + after).mkdir(); HttpURLConnection http = (HttpURLConnection) (new URL(urlP + after)).openConnection(); http.setRequestMethod("GET"); http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36"); http.connect(); if(http.getResponseCode() == 200) { InputStream inputStream = http.getInputStream(); byte [] buffer = new byte[1024]; ArrayList<byte []> byteList = new ArrayList<>(); ArrayList<Integer> byteLength = new ArrayList<>(); int length; int totalLength = 0; while( (length = inputStream.read(buffer)) != -1 ) { byteList.add(buffer); byteLength.add(length); totalLength += length; buffer = new byte[1024]; } http.disconnect(); byte [] all; all = new byte[totalLength]; totalLength = 0; while(byteList.size() != 0) { System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0)); totalLength += byteLength.get(0); byteList.remove(0); byteLength.remove(0); } String content = new String(all, StandardCharsets.UTF_8); all = null; content = content.split("tbody")[1]; String [] us = content.split("href=\""); for(int i = 1; i < us.length; i ++) { String href = us[i].split("\"", 2)[0]; if(href.equals("../")) { continue; } if(href.charAt(href.length() - 1) == '/') { GetPage(after + href); } else { GetFile(after + href); } } } else { GetPage(after); } } static void GetFile(String url) throws Exception{ System.out.println(url); HttpURLConnection http; http = (HttpURLConnection) (new URL(urlF + url)).openConnection(); http.setRequestMethod("GET"); http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36"); http.connect(); if(http.getResponseCode() == 200) { InputStream inputStream = http.getInputStream(); byte [] buffer = new byte[1024]; ArrayList<byte []> byteList = new ArrayList<>(); ArrayList<Integer> byteLength = new ArrayList<>(); int length; int totalLength = 0; while( (length = inputStream.read(buffer)) != -1 ) { byteList.add(buffer); byteLength.add(length); totalLength += length; buffer = new byte[1024]; } http.disconnect(); byte [] all; all = new byte[totalLength]; totalLength = 0; while(byteList.size() != 0) { System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0)); totalLength += byteLength.get(0); byteList.remove(0); byteLength.remove(0); } File f = new File(fileP + url.replaceAll("/", "\\\\")); f.createNewFile(); FileOutputStream fos = new FileOutputStream(f, false); fos.write(all); fos.flush(); fos.close(); } else { GetFile(url); } } }import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; import java.util.ArrayList; public class Element { static String fileP = "C:\\Users\\ZouYangMing\\Desktop\\element-ui\\"; static String urlP = "https://unpkg.com/browse/element-ui@2.15.7/"; static String urlF = "https://unpkg.com/element-ui@2.15.7/"; public static void main(String[] args){ try { GetPage(""); } catch (Exception e) { e.printStackTrace(); } } static void GetPage(String after) throws Exception { System.out.println(urlP + after); new File(fileP + after).mkdir(); HttpURLConnection http = (HttpURLConnection) (new URL(urlP + after)).openConnection(); http.setRequestMethod("GET"); http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36"); http.connect(); if(http.getResponseCode() == 200) { InputStream inputStream = http.getInputStream(); byte [] buffer = new byte[1024]; ArrayList<byte []> byteList = new ArrayList<>(); ArrayList<Integer> byteLength = new ArrayList<>(); int length; int totalLength = 0; while( (length = inputStream.read(buffer)) != -1 ) { byteList.add(buffer); byteLength.add(length); totalLength += length; buffer = new byte[1024]; } http.disconnect(); byte [] all; all = new byte[totalLength]; totalLength = 0; while(byteList.size() != 0) { System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0)); totalLength += byteLength.get(0); byteList.remove(0); byteLength.remove(0); } String content = new String(all, StandardCharsets.UTF_8); all = null; content = content.split("tbody")[1]; String [] us = content.split("href=\""); for(int i = 1; i < us.length; i ++) { String href = us[i].split("\"", 2)[0]; if(href.equals("../")) { continue; } if(href.charAt(href.length() - 1) == '/') { GetPage(after + href); } else { GetFile(after + href); } } } else { GetPage(after); } } static void GetFile(String url) throws Exception{ System.out.println(url); HttpURLConnection http; http = (HttpURLConnection) (new URL(urlF + url)).openConnection(); http.setRequestMethod("GET"); http.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3562.0 Safari/537.36"); http.connect(); if(http.getResponseCode() == 200) { InputStream inputStream = http.getInputStream(); byte [] buffer = new byte[1024]; ArrayList<byte []> byteList = new ArrayList<>(); ArrayList<Integer> byteLength = new ArrayList<>(); int length; int totalLength = 0; while( (length = inputStream.read(buffer)) != -1 ) { byteList.add(buffer); byteLength.add(length); totalLength += length; buffer = new byte[1024]; } http.disconnect(); byte [] all; all = new byte[totalLength]; totalLength = 0; while(byteList.size() != 0) { System.arraycopy(byteList.get(0), 0, all, totalLength, byteLength.get(0)); totalLength += byteLength.get(0); byteList.remove(0); byteLength.remove(0); } File f = new File(fileP + url.replaceAll("/", "\\\\")); f.createNewFile(); FileOutputStream fos = new FileOutputStream(f, false); fos.write(all); fos.flush(); fos.close(); } else { GetFile(url); } } }
© 版权声明
1
本站网络名称:
明恒博客
2
本站永久网址:
www.zym88.cn
3 本站的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行删除处理。
4 本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报。
6 本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
4 本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报。
6 本站资源大多存储在云盘,如发现链接失效,请联系我们我们会第一时间更新。
THE END
暂无评论内容