> Java > java지도 시간 > 본문

get, PUT, POST, 삭제 요청의 Java 구현

巴扎黑
풀어 주다: 2017-03-28 15:36:17
원래의
2551명이 탐색했습니다.

Java 구현 가져오기, PUT, POST, 요청 삭제:

1, 가져오기

public static String doGet(String strUrl ){
    String strReturn=""; 
    HttpGet httpGet = new HttpGet(strUrl);
    CloseableHttpClient httpclient = null; 
    CloseableHttpResponse response1=null;
        try {
        httpclient = HttpClients.createDefault();
        response1 = httpclient.execute(httpGet); 
            HttpEntity entity1 = response1.getEntity(); 
            strReturn=EntityUtils.toString(entity1) ;
            EntityUtils.consume(entity1); 
        }catch(Exception e){ 
        e.printStackTrace();
        }finally {  
try {
if(response1!=null)
response1.close();
} catch (IOException e) { 
e.printStackTrace();
}
        }
    return strReturn;
    }
로그인 후 복사

2, Put 가져오기

public static String doPut(String strUrl,String param){ 
     CloseableHttpClient httpclient = HttpClients.createDefault();
     StringBuffer jsonString= new StringBuffer();
         try {
         final HttpPut put=new HttpPut(strUrl);
         put.setEntity(new StringEntity(param,"UTF-8")); 
            CloseableHttpResponse response1= httpclient.execute(put ); 
             try {
                 HttpEntity entity1 = response1.getEntity();
                 BufferedReader br = new BufferedReader(new InputStreamReader(entity1.getContent())); 
                 String line;
                 while ((line = br.readLine()) != null) {
                         jsonString.append(line);
                 }  
                 
                 EntityUtils.consume(entity1);
             } finally {
                 response1.close();
             }
         }catch(Exception e){
         e.printStackTrace();
         }
         return jsonString.toString();
    }
로그인 후 복사

3, 게시

public static String doPost(String requestUrl, String payload) {
    String strReturn="";  
   PostMethod httpost = new PostMethod(requestUrl);   
   httpost.setRequestBody(payload);  
try { 
       httpClient.executeMethod(httpost);
       byte[] bytes = httpost.getResponseBody(); 
       strReturn=  new String(bytes) ; 
} catch (Exception e) { 
e.printStackTrace();
}
    return strReturn;
   }
로그인 후 복사

4,

public static void doDelete(String urlToRead) throws Exception {
   URL url = new URL(urlToRead);
   HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
   httpCon.setDoOutput(true);
   httpCon.setRequestProperty(
       "Content-Type", "application/x-www-form-urlencoded" );
   httpCon.setRequestMethod("DELETE");
   httpCon.connect();
   httpCon.disconnect(); 
        
    }
로그인 후 복사

이상 삭제 Java, PUT, POST 구현이며, 요청한 내용을 삭제합니다. 자세한 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!

관련 기사:

Java 프로그래밍의 일반적인 문제 요약에 대한 자세한 소개

Java 다중 프로그래밍의 기본에 대한 자세한 설명 threading

Java 원격 통신 기술 및 원리 분석 이미지 및 텍스트 소개

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!