| | |
| | | // 创建链接 |
| | | HttpURLConnection conn = (HttpURLConnection) url.openConnection(); |
| | | conn.setRequestMethod(requestMethod); |
| | | conn.setConnectTimeout(10 * 1000); |
| | | conn.setConnectTimeout(20000); |
| | | |
| | | if (conn.getResponseCode() != HttpURLConnection.HTTP_OK) { |
| | | //连接失败/链接失效/文件不存在 |
| | |
| | | } |
| | | |
| | | public static void main(String[] args) { |
| | | String get = netSourceToBase64("http://192.168.0.121:9999/admin/sys-file/platform/20230704154745.png", "GET"); |
| | | String get = netSourceToBase64("http://36.134.129.218:9999/admin/sys-file/platform/20230815083801.png", "GET"); |
| | | System.out.println(get); |
| | | } |
| | | |