HttpURLConnection

public  static ProductView getProductDetail(String id) {
        String path ="http://192.168.7.45:8080/Service/ws/product/detail/"+id;
        URL url = null;   
        ProductView pv=null;
        try {    
            url = new URL(path);    
        } catch (Exception e) {    
            e.printStackTrace();    
         }    
        try {    
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();//利用HttpURLConnection对象,我们可以从网络中获取网页数据.    
            conn.setRequestMethod("GET");// 提交模式
            conn.setDoOutput(true);   
            conn.connect();
            ObjectMapper om=new ObjectMapper();
            pv=om.readValue(conn.getInputStream(), ProductView.class);
        } catch (IOException e) {    
            e.printStackTrace();  
        }
        return pv;
    }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。