Maison > Java > javaDidacticiel > le corps du texte

Java的实现得到,PUT,POST,删除请求

巴扎黑
Libérer: 2017-03-28 15:36:17
original
2504 Les gens l'ont consulté

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;
    }
Copier après la connexion

2,放

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();
    }
Copier après la connexion

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;
   }
Copier après la connexion

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(); 
        
    }
Copier après la connexion

以上就是Java的实现得到,PUT,POST,删除请求的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关文章:

详细介绍Java编程常见问题汇总

Java多线程基础详解

Java远程通讯技术及原理分析的图文介绍

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!