HTTP请求处理 get/post工具类 验证网络DEMO

简介: HTTP请求处理 get/post工具类 验证网络DEMO

HTTP请求处理 get/post工具类 验证网络DEMO

package com.aostar.ida.framework.util;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.Iterator;
import java.util.Map;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import oracle.net.aso.p;
/**
 * * HTTP请求处理 get/post
 * 
 * @author 
 *
 */
public class HttpUtilYan {
    private final static Logger logger = LoggerFactory.getLogger(HttpUtils.class);
    private static final Charset UTF_8 = Charset.forName("UTF-8");
    public static final String POST = "POST";
    public static final String GET = "GET";
    public static final int TIMEOUT = 30000;
    public static final int FILE_TIMEOUT = 300000;
    // boundary就是request头和上传文件内容的分隔符
    public static final String BOUNDARY = "---------------------------123821742118716";
    public static final String RESULT_FILE = "attachment";
    // Http Get请求
    //
    /**
     * * 发送HTTP请求
     * 
     * @param serverUrl
     * @param params
     * @return
     */
    public static String getHttp(String serverUrl, Map<String, String> params) {
        return getHttp(serverUrl, params, null, TIMEOUT);
    }
    /**
     * * 发送HTTP请求
     * 
     * @param serverUrl
     * @param params
     * @return
     */
    public static String getHttp(String serverUrl, Map<String, String> params, Map<String, String> headers) {
        return getHttp(serverUrl, params, headers, TIMEOUT);
    }
    /**
     * 发送HTTP请求
     * 
     * @param serverUrl
     * @param method
     * @param params
     * @param timeout
     * @return
     */
    public static String getHttp(String serverUrl, Map<String, String> params, Map<String, String> headers,
            Integer time) {
        logger.info("\n【请求地址】: {} \n【请求参数】: {} \n【请求头部】: {}", serverUrl, params, headers);
        HttpURLConnection conn = null;
        BufferedReader br = null;
        try {
            // 构建请求参数
            StringBuilder sbParam = new StringBuilder(serverUrl);
            if (mapIsNotEmpty(params)) {
                sbParam.append("?");
                if (mapIsNotEmpty(params)) {
                    for (Map.Entry<String, String> entry : params.entrySet()) {
                        sbParam.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
                        sbParam.append("=");
                        sbParam.append(URLEncoder.encode(entry.getValue(), "UTF-8"));
                        sbParam.append("&");
                    }
                }
            }
            // 发送请求
            URL url = new URL(sbParam.toString());
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
            conn.setRequestMethod(GET);
            conn.setUseCaches(false);
            conn.setDoOutput(true);
            conn.setReadTimeout(time);
            conn.setConnectTimeout(time);
            if (mapIsNotEmpty(headers)) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    conn.setRequestProperty(entry.getKey(), entry.getValue());
                }
            }
            logger.info("[HttpsUtls] [getHttp] connection success");
            // 获取状态码
            int responseCode = conn.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                logger.error("[HttpsUtls] [getHttp] response status = {}", responseCode);
                return StringUtils.EMPTY;
            }
            // 取得返回信息
            br = new BufferedReader(new InputStreamReader(conn.getInputStream(), UTF_8));
            String line;
            StringBuilder result = new StringBuilder();
            while ((line = br.readLine()) != null) {
                result.append(line);
            }
            logger.info("\n【响应数据】: {} ", result);
            // JSON处理
            return result.toString();
        } catch (Exception e) {
            logger.error("[HttpsUtls] [getHttp Exception", e);
        } finally {
            if (br != null) {
                try {
                    br.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls] [getHttp] br.close is exception. {}", e);
                }
            }
            if (conn != null) {
                try {
                    conn.disconnect();
                } catch (Exception e) {
                    logger.error("[HttpsUtls] [getHttp] conn.disconnect() is exception. {}", e);
                }
            }
        }
        return StringUtils.EMPTY;
    }
    // HTTP POST请求
    ///
    /**
     * POST 请求
     * 
     * @param serverUrl
     * @param params
     * @return
     */
    public static String postHttp(String serverUrl, Map<String, String> params) {
        return postHttp(serverUrl, params, null);
    }
    /**
     * POST 请求
     * 
     * @param serverUrl
     * @param params
     * @param headers
     * @return
     */
    public static String postHttp(String serverUrl, Map<String, String> params, Map<String, String> headers) {
        return postHttp(serverUrl, params, headers, POST, TIMEOUT);
    }
    /**
     * 发送HTTP请求
     * 
     * @param serverUrl
     * @param method
     * @param params
     * @param timeout
     * @return
     */
    public static String postHttp(String serverUrl, Map<String, String> params, Map<String, String> headers,
            String type, int timeout) {
        logger.info("\n【请求地址】: {} \n【请求参数】: {} \n【请求头部】: {}", serverUrl, params, headers);
        HttpURLConnection conn = null;
        OutputStreamWriter osw = null;
        BufferedReader br = null;
        try {
            // 发送请求
            URL url = new URL(serverUrl);
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
            conn.setRequestMethod(type);
            conn.setUseCaches(false);
            conn.setDoOutput(true);
            conn.setReadTimeout(timeout);
            conn.setConnectTimeout(timeout);
            if (mapIsNotEmpty(headers)) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    conn.setRequestProperty(entry.getKey(), entry.getValue());
                }
            }
            // 构建请求参数
            StringBuilder sbParam = new StringBuilder();
            if (mapIsNotEmpty(params)) {
                for (Map.Entry<String, String> entry : params.entrySet()) {
                    sbParam.append(entry.getKey());
                    sbParam.append("=");
                    sbParam.append(entry.getValue());
                    sbParam.append("&");
                }
            }
            // 获得输出流
            osw = new OutputStreamWriter(conn.getOutputStream(), UTF_8);
            osw.write(sbParam.toString());
            osw.flush();
            osw.close();
            logger.info("[HttpsUtls][postHttp] connection success.");
            // 获取状态码
            int responseCode = conn.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                logger.error("[HttpsUtls][postHttp] response status = {}", responseCode);
                return StringUtils.EMPTY;
            }
            // 取得返回信息
            br = new BufferedReader(new InputStreamReader(conn.getInputStream(), UTF_8));
            String line;
            StringBuilder result = new StringBuilder();
            while ((line = br.readLine()) != null) {
                result.append(line);
            }
            logger.info("\n【响应数据】: {} ", result);
            // JSON处理
            return result.toString();
        } catch (Exception e) {
            logger.error("[HttpsUtls][postHttp] Exception", e);
        } finally {
            if (osw != null) {
                try {
                    osw.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postHttp] osw.close() is Exception. {}", e);
                }
            }
            if (br != null) {
                try {
                    br.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postHttp] br.close() is Exception. {}", e);
                }
            }
            if (conn != null) {
                try {
                    conn.disconnect();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postHttp] conn.disconnect() is Exception. {}", e);
                }
            }
        }
        return StringUtils.EMPTY;
    }
    // HTTP 推送JSON格式
    ///
    /**
     * Post 请求 格式为 application/json
     * 
     * @param serverUrl
     * @param urlParams
     * @param headers
     * @param jsonParam
     * @return
     */
    public static String postJson(String serverUrl, Map<String, String> urlParams, Map<String, String> headers,
            String jsonParam) {
        logger.info("\n【请求地址】: {} \n【请求参数】: {} \n【请求头部】: {}\n【请求JSON】: {}", serverUrl, urlParams, headers, jsonParam);
        HttpURLConnection conn = null;
        OutputStreamWriter osw = null;
        BufferedReader br = null;
        try {
            // 构建请求参数
            StringBuilder sbParam = new StringBuilder(serverUrl);
            if (mapIsNotEmpty(urlParams)) {
                sbParam.append("?");
                if (mapIsNotEmpty(urlParams)) {
                    for (Map.Entry<String, String> entry : urlParams.entrySet()) {
                        sbParam.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
                        sbParam.append("=");
                        sbParam.append(URLEncoder.encode(entry.getValue(), "UTF-8"));
                        sbParam.append("&");
                    }
                }
            }
            // 发送请求
            URL url = new URL(sbParam.toString());
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
            if (mapIsNotEmpty(headers)) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    conn.setRequestProperty(entry.getKey(), entry.getValue());
                }
            }
            conn.setRequestMethod(POST);
            conn.setUseCaches(false);
            conn.setDoOutput(true);
            conn.setReadTimeout(TIMEOUT);
            conn.setConnectTimeout(TIMEOUT);
            // 设置文件类型:
            conn.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
            // 设置接收类型否则返回415错误
            conn.setRequestProperty("accept", "application/json");
            // 往服务器里面发送数据
            if (jsonParam != null) {
                byte[] writebytes = jsonParam.getBytes();
                // 设置文件长度
                conn.setRequestProperty("Content-Length", String.valueOf(writebytes.length));
            }
            // 获得输出流
            osw = new OutputStreamWriter(conn.getOutputStream(), UTF_8);
            osw.write(jsonParam);
            osw.flush();
            osw.close();
            logger.info("[HttpsUtls][postJson] connection success.");
            // 构建请求参数
            sbParam = new StringBuilder();
            int responseCode = conn.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                logger.error("[HttpsUtls][postJson] responseCode:{}", responseCode);
                return StringUtils.EMPTY;
            }
            // 取得返回信息
            br = new BufferedReader(new InputStreamReader(conn.getInputStream(), UTF_8));
            String line;
            StringBuilder result = new StringBuilder();
            while ((line = br.readLine()) != null) {
                result.append(line);
            }
            logger.info("\n【响应数据】: {} ", result);
            // JSON处理
            return result.toString();
        } catch (Exception e) {
            logger.error("[HttpsUtls][postJson] Exception", e);
        } finally {
            if (osw != null) {
                try {
                    osw.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postJson] osw.close() is Exception. {}", e);
                }
            }
            if (br != null) {
                try {
                    br.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postJson] br.close() is Exception. {}", e);
                }
            }
            if (conn != null) {
                try {
                    conn.disconnect();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postJson] conn.disconnect() is Exception. {}", e);
                }
            }
        }
        return StringUtils.EMPTY;
    }
    /**
     * post 请求 格式为 text/plain
     * 
     * @param serverUrl
     * @param urlParams
     * @param headers
     * @param jsonParam
     * @return
     */
    public static String postText(String serverUrl, Map<String, String> urlParams, Map<String, String> headers,
            String jsonParam) {
        logger.info("\n【请求地址】: {} \n【请求参数】: {} \n【请求头部】: {}\n【请求JSON】: {}", serverUrl, urlParams, headers, jsonParam);
        HttpURLConnection conn = null;
        OutputStreamWriter osw = null;
        BufferedReader br = null;
        try {
            // 构建请求参数
            StringBuilder sbParam = new StringBuilder(serverUrl);
            if (mapIsNotEmpty(urlParams)) {
                sbParam.append("?");
                if (mapIsNotEmpty(urlParams)) {
                    for (Map.Entry<String, String> entry : urlParams.entrySet()) {
                        sbParam.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
                        sbParam.append("=");
                        sbParam.append(URLEncoder.encode(entry.getValue(), "UTF-8"));
                        sbParam.append("&");
                    }
                }
            }
            // 发送请求
            URL url = new URL(sbParam.toString());
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
            if (mapIsNotEmpty(headers)) {
                for (Map.Entry<String, String> entry : headers.entrySet()) {
                    conn.setRequestProperty(entry.getKey(), entry.getValue());
                }
            }
            conn.setRequestMethod(POST);
            conn.setUseCaches(false);
            conn.setDoOutput(true);
            conn.setReadTimeout(TIMEOUT);
            conn.setConnectTimeout(TIMEOUT);
            // 设置文件类型:
            conn.setRequestProperty("Content-Type", "text/plain; charset=UTF-8");
            // 设置接收类型否则返回415错误
            conn.setRequestProperty("accept", "application/json");
            // 往服务器里面发送数据
            if (jsonParam != null) {
                byte[] writebytes = jsonParam.getBytes();
                // 设置文件长度
                conn.setRequestProperty("Content-Length", String.valueOf(writebytes.length));
            }
            // 获得输出流
            osw = new OutputStreamWriter(conn.getOutputStream(), UTF_8);
            osw.write(jsonParam);
            osw.flush();
            osw.close();
            logger.info("[HttpsUtls][postText] connection success.");
            // 构建请求参数
            sbParam = new StringBuilder();
            int responseCode = conn.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                logger.error("[HttpsUtls][postText] responseCode:{}", responseCode);
                return StringUtils.EMPTY;
            }
            // 取得返回信息
            br = new BufferedReader(new InputStreamReader(conn.getInputStream(), UTF_8));
            String line;
            StringBuilder result = new StringBuilder();
            while ((line = br.readLine()) != null) {
                result.append(line);
            }
            logger.info("\n【响应数据】: {} ", result);
            // JSON处理
            return result.toString();
        } catch (Exception e) {
            logger.error("[HttpsUtls][postText] Exception", e);
        } finally {
            if (osw != null) {
                try {
                    osw.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postText] osw.close() is Exception. {}", e);
                }
            }
            if (br != null) {
                try {
                    br.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postText] br.close() is Exception. {}", e);
                }
            }
            if (conn != null) {
                try {
                    conn.disconnect();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][postText] conn.disconnect() is Exception. {}", e);
                }
            }
        }
        return StringUtils.EMPTY;
    }
    /**
     * * 上传多个文件
     * 
     * @param urlStr
     * @param urlParams
     * @param fileMap
     * @return
     */
    public static String formUpload(String urlStr, Map<String, String> urlParams, Map<String, String> fileMap) {
        if (mapIsEmpty(fileMap)) {
            logger.info("\n【请求地址】: {} \n【请求参数】: {} ", urlStr, urlParams);
        } else {
            logger.info("\n【请求地址】: {} \n【请求参数】: {} \n【请求文件】: {}", urlStr, urlParams, fileMap);
        }
        String res = "";
        HttpURLConnection conn = null;
        DataInputStream in = null;
        try {
            URL url = new URL(urlStr);
            conn = (HttpURLConnection) url.openConnection();
            conn.setConnectTimeout(FILE_TIMEOUT);
            conn.setReadTimeout(FILE_TIMEOUT);
            conn.setDoOutput(true);
            conn.setDoInput(true);
            conn.setUseCaches(false);
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Connection", "Keep-Alive");
            conn.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 6.1; zh-CN; rv:1.9.2.6)");
            conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + BOUNDARY);
            OutputStream out = new DataOutputStream(conn.getOutputStream());
            // urlParams
            if (urlParams != null) {
                StringBuilder strBuf = new StringBuilder();
                Iterator<Map.Entry<String, String>> iter = urlParams.entrySet().iterator();
                while (iter.hasNext()) {
                    Map.Entry<String, String> entry = iter.next();
                    String inputName = entry.getKey();
                    String inputValue = entry.getValue();
                    if (inputValue == null) {
                        continue;
                    }
                    strBuf.append("\r\n").append("--").append(BOUNDARY).append("\r\n");
                    strBuf.append("Content-Disposition: form-data; name=\"" + inputName + "\"\r\n\r\n");
                    strBuf.append(inputValue);
                }
                out.write(strBuf.toString().getBytes());
            }
            // file
            if (fileMap != null) {
                Iterator<Map.Entry<String, String>> iter = fileMap.entrySet().iterator();
                while (iter.hasNext()) {
                    Map.Entry<String, String> entry = iter.next();
                    String inputName = entry.getKey();
                    String inputValue = entry.getValue();
                    if (inputValue == null) {
                        continue;
                    }
                    File file = new File(inputValue);
                    if (!file.exists()) {
                        logger.error("[HttpsUtls][formUpload] file is not exist. name = {}", inputValue);
                        return res;
                    }
                    String filename = file.getName();
                    StringBuilder strBuf = new StringBuilder();
                    strBuf.append("\r\n").append("--").append(BOUNDARY).append("\r\n");
                    strBuf.append("Content-Disposition: form-data; name=\"" + inputName + "\"; filename=\"" + filename
                            + "\"\r\n");
                    strBuf.append("Content-Type:" + "multipart/form-data;boundary=" + "*****" + "\r\n\r\n");
                    out.write(strBuf.toString().getBytes());
                    in = new DataInputStream(new FileInputStream(file));
                    int bytes = 0;
                    byte[] bufferOut = new byte[1024];
                    while ((bytes = in.read(bufferOut)) != -1) {
                        out.write(bufferOut, 0, bytes);
                    }
                    in.close();
                }
            }
            byte[] endData = ("\r\n--" + BOUNDARY + "--\r\n").getBytes();
            out.write(endData);
            out.flush();
            out.close();
            // 读取返回数据
            StringBuilder strBuf = new StringBuilder();
            BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line = null;
            while ((line = reader.readLine()) != null) {
                strBuf.append(line);
            }
            res = strBuf.toString();
            reader.close();
            reader = null;
        } catch (Exception e) {
            logger.error("[HttpsUtls][formUpload] is Exception. {}", e);
        } finally {
            if (conn != null) {
                conn.disconnect();
                conn = null;
            }
            if (in != null) {
                try {
                    in.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls][formUpload] in.close is Exception. {}", e);
                }
            }
        }
        logger.info("\n【响应数据】: {} ", res);
        return res;
    }
    /**
     * * 通过url下载单个文件
     * 
     * @param downloadUrl
     * @param urlParams
     * @param maxSize
     * @param folder
     * @param filePath
     * @return
     */
    public static String downloadFile(String serverUrl, Map<String, String> params, String folder, String filePath) {
        logger.info("\n【请求地址】: {} \n【请求参数】: {} ", serverUrl, params);
        HttpURLConnection conn = null;
        InputStream in = null;
        FileOutputStream os = null;
        try {
            // 构建请求参数
            StringBuilder sbParam = new StringBuilder(serverUrl);
            if (mapIsNotEmpty(params)) {
                sbParam.append("?");
                if (mapIsNotEmpty(params)) {
                    for (Map.Entry<String, String> entry : params.entrySet()) {
                        sbParam.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
                        sbParam.append("=");
                        sbParam.append(URLEncoder.encode(entry.getValue(), "UTF-8"));
                        sbParam.append("&");
                    }
                }
            }
            // 发送请求
            URL url = new URL(sbParam.toString());
            conn = (HttpURLConnection) url.openConnection();
            conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)");
            conn.setRequestMethod(GET);
            conn.setUseCaches(false);
            conn.setDoOutput(true);
            conn.setReadTimeout(TIMEOUT);
            conn.setConnectTimeout(TIMEOUT);
            int responseCode = conn.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                logger.error("[HttpsUtls][downloadFile] responseCode:{}", responseCode);
                return StringUtils.EMPTY;
            }
            boolean resultIsFile = parseIsFile(conn);
            // 返回不是文件流,则返回字符串
            if (!resultIsFile) {
                // 读取返回数据
                StringBuilder strBuf = new StringBuilder();
                BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                String line = null;
                while ((line = reader.readLine()) != null) {
                    strBuf.append(line);
                }
                reader.close();
                reader = null;
                logger.info("\n【响应数据】: {} ", strBuf);
                return strBuf.toString();
            }
            // 返回文件流
            File targetFile = new File(folder, filePath);
            in = conn.getInputStream();
            os = new FileOutputStream(targetFile);
            byte[] buffer = new byte[4 * 1024];
            int read;
            while ((read = in.read(buffer)) > -1) {
                os.write(buffer, 0, read);
            }
            os.flush();
            return filePath;
        } catch (Exception e) {
            logger.error("[HttpsUtls][downloadFile] Exception", e);
            return StringUtils.EMPTY;
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls] [downloadFile] in.close is exception. {}", e);
                }
            }
            if (os != null) {
                try {
                    os.close();
                } catch (Exception e) {
                    logger.error("[HttpsUtls] [downloadFile] os.close is exception. {}", e);
                }
            }
            if (conn != null) {
                try {
                    conn.disconnect();
                } catch (Exception e) {
                    logger.error("[HttpsUtls] [downloadFile] conn.disconnect is exception. {}", e);
                }
            }
        }
    }
    // 通用
    // /
    /**
     * * 是否是文件
     * 
     * @param conn
     * @return
     */
    private static boolean parseIsFile(HttpURLConnection conn) {
        String isFile = conn.getHeaderField("Content-Disposition");
        if (StringUtils.isEmpty(isFile)) {
            return false;
        }
        return StringUtils.contains(isFile, RESULT_FILE);
    }
    /**
     * 判断Map是否不为空
     * 
     * @param m
     * @return
     */
    public static boolean mapIsNotEmpty(Map<?, ?> m) {
        return !mapIsEmpty(m);
    }
    /**
     * 判断Map是否为空
     * 
     * @param m
     * @return
     */
    public static boolean mapIsEmpty(Map<?, ?> m) {
        return m == null || m.isEmpty();
    }
    /**
     * 测试http地址是否通畅  
     * @param url
     * @return
     */
    public static boolean isOk(String url) {
        if(StringUtils.isEmpty(url)) return false;
        try {
            URL netUrl = new URL(url);
            HttpURLConnection connection = (HttpURLConnection) netUrl.openConnection();
            connection.setConnectTimeout(3000); //连接主机超时时间ms
            connection.setReadTimeout(3000); //从主机读取数据超时时间ms
            if (HttpURLConnection.HTTP_OK == connection.getResponseCode()) {
                System.out.println("网络联通!");
                return true;
            }
        } catch (IOException e) {
            logger.error("连接不通", e.getMessage());
            return false;
        }
        return false;
    }
}


相关文章
|
1天前
|
存储 缓存 开发框架
Flutter的网络请求:使用Dart进行HTTP请求的技术详解
【4月更文挑战第26天】了解Flutter网络请求,本文详述使用Dart进行HTTP请求
|
10天前
|
网络协议 Java API
深度剖析:Java网络编程中的TCP/IP与HTTP协议实践
【4月更文挑战第17天】Java网络编程重在TCP/IP和HTTP协议的应用。TCP提供可靠数据传输,通过Socket和ServerSocket实现;HTTP用于Web服务,常借助HttpURLConnection或Apache HttpClient。两者结合,构成网络服务基础。Java有多种高级API和框架(如Netty、Spring Boot)简化开发,助力高效、高并发的网络通信。
|
11天前
|
网络协议 安全 API
Android网络和数据交互: 什么是HTTP和HTTPS?在Android中如何进行网络请求?
HTTP和HTTPS是网络数据传输协议,HTTP基于TCP/IP,简单快速,HTTPS则是加密的HTTP,确保数据安全。在Android中,过去常用HttpURLConnection和HttpClient,但HttpClient自Android 6.0起被移除。现在推荐使用支持TLS、流式上传下载、超时配置等特性的HttpsURLConnection进行网络请求。
10 0
|
15天前
|
存储 JSON 前端开发
网络原理(4)HTTP协议(下)
网络原理(4)HTTP协议
27 0
|
1月前
|
Shell Linux C语言
【Shell 命令集合 网络通讯 】Linux 验证Samba配置文件 testparm命令 使用教程
【Shell 命令集合 网络通讯 】Linux 验证Samba配置文件 testparm命令 使用教程
38 0
|
1月前
|
Shell Linux 网络安全
【Shell 命令集合 网络通讯 】Linux 管理Apache HTTP服务器 httpd命令 使用指南
【Shell 命令集合 网络通讯 】Linux 管理Apache HTTP服务器 httpd命令 使用指南
32 0
|
1月前
|
Shell Linux Apache
【Shell 命令集合 网络通讯 】Linux 管理Apache HTTP服务器 apachectl命令 使用教程
【Shell 命令集合 网络通讯 】Linux 管理Apache HTTP服务器 apachectl命令 使用教程
162 1
|
1月前
|
机器学习/深度学习 数据采集 人工智能
m基于深度学习网络的手势识别系统matlab仿真,包含GUI界面
m基于深度学习网络的手势识别系统matlab仿真,包含GUI界面
43 0
|
1月前
|
机器学习/深度学习 算法 计算机视觉
基于yolov2深度学习网络的火焰烟雾检测系统matlab仿真
基于yolov2深度学习网络的火焰烟雾检测系统matlab仿真
|
1月前
|
机器学习/深度学习 算法 计算机视觉
m基于深度学习网络的性别识别系统matlab仿真,带GUI界面
m基于深度学习网络的性别识别系统matlab仿真,带GUI界面
29 2