목차
1. Java는 post 인터페이스를 호출합니다
1. URLConnection 또는 HttpURLConnection
jar 패키지를 사용합니다.
2. Java는 get 인터페이스를 호출합니다
Java java지도 시간 Java는 어떻게 http 요청을 시작하고 게시물을 호출하고 인터페이스를 얻습니까?

Java는 어떻게 http 요청을 시작하고 게시물을 호출하고 인터페이스를 얻습니까?

May 16, 2023 pm 07:53 PM
java get post

    1. Java는 post 인터페이스를 호출합니다

    1. URLConnection 또는 HttpURLConnection

    java가 함께 제공되므로 인터페이스 응답 코드가 서버에 의해 수정되는 경우 다른 jar 패키지를 다운로드할 필요가 없습니다. , 반환을 받을 수 없습니다. 응답 코드가 올바른 경우에만 메시지를 받을 수 있습니다.

    public static String sendPost(String url, String param) {
            OutputStreamWriter out = null;
            BufferedReader in = null;
            StringBuilder result = new StringBuilder("");
            try {
                URL realUrl = new URL(url);
                // 打开和URL之间的连接
                URLConnection conn = realUrl.openConnection();
                // 设置通用的请求属性
                conn.setRequestProperty("Content-Type","application/json;charset=UTF-8");
                conn.setRequestProperty("accept", "*/*");
                conn.setRequestProperty("connection", "Keep-Alive");
                conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
                // 发送POST请求必须设置如下两行
                conn.setDoOutput(true);
                conn.setDoInput(true);
                // 获取URLConnection对象对应的输出流
                out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");
                // 发送请求参数
                out.write(param);
                // flush输出流的缓冲
                out.flush();
                // 定义BufferedReader输入流来读取URL的响应
                in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
                String line;
                while ((line = in.readLine()) != null) {
                    result.append(line);
                }
            } catch (Exception e) {
                System.out.println("发送 POST 请求出现异常!"+e);
                e.printStackTrace();
            }
            //使用finally块来关闭输出流、输入流
            finally{
            	if(out!=null){ try { out.close(); }catch(Exception ex){} }
            	if(in!=null){ try { in.close(); }catch(Exception ex){} }
            }
            return result.toString();
        }
    로그인 후 복사

    HttpURLConnection 메서드 호출

    //ms超时毫秒,url地址,json入参
    public static String httpJson(int ms,String url,String json) throws Exception{
    		String err = "00", line = null;
    		StringBuilder sb = new StringBuilder();
    		HttpURLConnection conn = null;
    		BufferedWriter out = null;
    		BufferedReader in = null;
    		try{
    			conn = (HttpURLConnection) (new URL(url.replaceAll("/","/"))).openConnection();
    			conn.setRequestMethod("POST");
    			conn.setDoOutput(true);
    			conn.setDoInput(true);
    			conn.setUseCaches(false);
    			conn.setConnectTimeout(ms);
    			conn.setReadTimeout(ms);
    			conn.setRequestProperty("Content-Type","application/json;charset=utf-8");
    			conn.connect();
    			out = new BufferedWriter(new OutputStreamWriter(conn.getOutputStream(),"utf-8"));
    			out.write(new String(json.getBytes(), "utf-8"));
    			out.flush();//发送参数
    			int code = conn.getResponseCode();
    			if (conn.getResponseCode()==200){
    				in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
    				while ((line=in.readLine())!=null)
    					sb.append(line);
    			}//接收返回值
    			
    		}catch(Exception ex){
    			err=ex.getMessage();
    		}
    		try{ if (out!=null) out.close(); }catch(Exception ex){}; 
    		try{ if (in!=null) in.close(); }catch(Exception ex){};
    		try{ if (conn!=null) conn.disconnect();}catch(Exception ex){}
    		if (!err.equals("00")) throw new Exception(err);
    		return sb.toString();
    	}
    로그인 후 복사

    2. CloseableHttpClient를 사용합니다.

    jar 패키지를 사용합니다.

    <dependency>
        <groupId>com.alibaba.csb.sdk</groupId>
        <artifactId>http-client</artifactId>
        <version>1.1.5.1</version>
    </dependency>
    로그인 후 복사
    public static String httpPostJson(String url,String json) throws Exception{
    		String data=""; 
    		CloseableHttpClient httpClient = null;
    		CloseableHttpResponse response = null;
    		try {
    			httpClient = HttpClients.createDefault();
    			HttpPost httppost = new HttpPost(url);
    			httppost.setHeader("Content-Type", "application/json;charset=UTF-8");
    			StringEntity se = new StringEntity(json,Charset.forName("UTF-8"));
    	        se.setContentType("text/json");
    	        se.setContentEncoding("UTF-8");
    	        httppost.setEntity(se);
    	        response = httpClient.execute(httppost);
    	        int code = response.getStatusLine().getStatusCode();
    	        System.out.println("接口响应码:"+code);
    	        data = EntityUtils.toString(response.getEntity(), "utf-8");
    	        EntityUtils.consume(response.getEntity());
    		} catch (Exception e) {
    			e.printStackTrace();
    		} finally {
    			if(response!=null){ try{response.close();}catch (IOException e){} }
    			if(httpClient!=null){ try{httpClient.close();}catch(IOException e){} }
    		}
    		return data;
    	}
    로그인 후 복사

    3.jar 패키지를 사용합니다. 두 번째 jar 패키지와 동일합니다.

    public static String sendPost(){
    		String result = "";
    		HttpParameters.Builder builder = HttpParameters.newBuilder();
    		builder.requestURL("URL") // 设置请求的URL
            		.api("api") // 设置服务名
            		.version("version") // 设置版本号
            		.method("post") // 设置调用方式, get/post
            		.accessKey("ak").secretKey("sk"); // 设置accessKey 和 设置secretKey
    		// 设置请求参数(json格式)
            Map<String,String> param = new HashMap<String,String>();
            param.put("key1","value1");
            param.put("key2","value2");
            //加密,没有加密则不需要encryptParam,直接用param
            Map<String,String> encryptParam = new HashMap<String,String>();
            encryptParam.put("key3", getData(JSON.toJSONString(param)));
            ContentBody cb = new ContentBody(JSON.toJSONString(encryptParam));
            builder.contentBody(cb);
            
            try {
            	result = HttpCaller.invoke(builder.build());
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    		
            return result;
    	}
    	
    	//自己的加密方式
    	public static String getData(String data1){
    		return "加密后的密文";
    	}
    로그인 후 복사

    2. Java는 get 인터페이스를 호출합니다

    java

    //将map型转为请求参数型
    public static String getUrlData(Map<Object, Object> data) throws Exception{
    	StringBuffer sb = new StringBuffer();
    	try {
    		Set<Map.Entry<Object, Object>> entries = data.entrySet();
    		Iterator<Map.Entry<Object, Object>> iterators = entries.iterator();
    		while(iterators.hasNext()){
    			Map.Entry<Object, Object> next = iterators.next();
    			sb.append(next.getKey().toString().trim()).append("=").append(URLEncoder.encode(next.getValue() + "", "UTF-8").trim()).append("&");
    		}
    		sb.deleteCharAt(sb.length() - 1);
    	} catch (Exception e) {
    		sb.append(e.toString());
    	}
    	return sb.toString();
    }
    
    //strUrl截止到?,例:http://127.0.0.1:8080/api/method?
    public static String httpGet(String strUrl){
    	Map<Object, Object> params = new HashMap<Object, Object>();
    	params.put("key1", "value1");
    	params.put("key2", "value2");
    	String url=strUrl + getUrlData(params);
    	
      	StringBuilder result = new StringBuilder();
        BufferedReader in = null;
        try {
            URL realUrl = new URL(url);
            // 打开和URL之间的连接
            URLConnection connection = realUrl.openConnection();
            // 设置通用的请求属性
            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 建立实际的连接
            connection.connect();
            // 获取所有响应头字段
            // 定义 BufferedReader输入流来读取URL的响应
            in = new BufferedReader(new InputStreamReader(connection.getInputStream(),"UTF-8"));
            String line;
            while ((line = in.readLine()) != null) {
                result.append(line);
            }
        } catch (Exception e) {
            System.out.println("发送GET请求出现异常!" + e);
            e.printStackTrace();
        }
        finally {
        	if (in != null){ try { in.close(); }catch(Exception e2){} }
        }
        return result.toString();
    }
    로그인 후 복사
    와 함께 제공되는 URLConnection을 사용하세요.

    위 내용은 Java는 어떻게 http 요청을 시작하고 게시물을 호출하고 인터페이스를 얻습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

    핫 AI 도구

    Undresser.AI Undress

    Undresser.AI Undress

    사실적인 누드 사진을 만들기 위한 AI 기반 앱

    AI Clothes Remover

    AI Clothes Remover

    사진에서 옷을 제거하는 온라인 AI 도구입니다.

    Undress AI Tool

    Undress AI Tool

    무료로 이미지를 벗다

    Clothoff.io

    Clothoff.io

    AI 옷 제거제

    AI Hentai Generator

    AI Hentai Generator

    AI Hentai를 무료로 생성하십시오.

    인기 기사

    R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
    3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. 최고의 그래픽 설정
    3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
    3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
    WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
    3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌

    뜨거운 도구

    메모장++7.3.1

    메모장++7.3.1

    사용하기 쉬운 무료 코드 편집기

    SublimeText3 중국어 버전

    SublimeText3 중국어 버전

    중국어 버전, 사용하기 매우 쉽습니다.

    스튜디오 13.0.1 보내기

    스튜디오 13.0.1 보내기

    강력한 PHP 통합 개발 환경

    드림위버 CS6

    드림위버 CS6

    시각적 웹 개발 도구

    SublimeText3 Mac 버전

    SublimeText3 Mac 버전

    신 수준의 코드 편집 소프트웨어(SublimeText3)

    자바의 제곱근 자바의 제곱근 Aug 30, 2024 pm 04:26 PM

    자바의 제곱근 안내 여기서는 예제와 코드 구현을 통해 Java에서 Square Root가 어떻게 작동하는지 설명합니다.

    자바의 완전수 자바의 완전수 Aug 30, 2024 pm 04:28 PM

    Java의 완전수 가이드. 여기서는 정의, Java에서 완전 숫자를 확인하는 방법, 코드 구현 예제에 대해 논의합니다.

    Java의 난수 생성기 Java의 난수 생성기 Aug 30, 2024 pm 04:27 PM

    Java의 난수 생성기 안내. 여기서는 예제를 통해 Java의 함수와 예제를 통해 두 가지 다른 생성기에 대해 설명합니다.

    자바의 웨카 자바의 웨카 Aug 30, 2024 pm 04:28 PM

    Java의 Weka 가이드. 여기에서는 소개, weka java 사용 방법, 플랫폼 유형 및 장점을 예제와 함께 설명합니다.

    Java의 스미스 번호 Java의 스미스 번호 Aug 30, 2024 pm 04:28 PM

    Java의 Smith Number 가이드. 여기서는 정의, Java에서 스미스 번호를 확인하는 방법에 대해 논의합니다. 코드 구현의 예.

    Java Spring 인터뷰 질문 Java Spring 인터뷰 질문 Aug 30, 2024 pm 04:29 PM

    이 기사에서는 가장 많이 묻는 Java Spring 면접 질문과 자세한 답변을 보관했습니다. 그래야 면접에 합격할 수 있습니다.

    Java 8 Stream foreach에서 나누거나 돌아 오시겠습니까? Java 8 Stream foreach에서 나누거나 돌아 오시겠습니까? Feb 07, 2025 pm 12:09 PM

    Java 8은 스트림 API를 소개하여 데이터 컬렉션을 처리하는 강력하고 표현적인 방법을 제공합니다. 그러나 스트림을 사용할 때 일반적인 질문은 다음과 같은 것입니다. 기존 루프는 조기 중단 또는 반환을 허용하지만 스트림의 Foreach 메소드는이 방법을 직접 지원하지 않습니다. 이 기사는 이유를 설명하고 스트림 처리 시스템에서 조기 종료를 구현하기위한 대체 방법을 탐색합니다. 추가 읽기 : Java Stream API 개선 스트림 foreach를 이해하십시오 Foreach 메소드는 스트림의 각 요소에서 하나의 작업을 수행하는 터미널 작동입니다. 디자인 의도입니다

    Java의 날짜까지의 타임스탬프 Java의 날짜까지의 타임스탬프 Aug 30, 2024 pm 04:28 PM

    Java의 TimeStamp to Date 안내. 여기서는 소개와 예제와 함께 Java에서 타임스탬프를 날짜로 변환하는 방법에 대해서도 설명합니다.

    See all articles