欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

URL类发起http请求

程序员文章站 2022-07-16 14:09:06
...
    public static void doPost(String path){
        InputStream in = null;
        try {
            URL url=new URL(path);
            in = url.openConnection().getInputStream();
            String content= org.apache.commons.io.IOUtils.toString(in);
            System.out.println("content is " + content);
        } catch (IOException e) {
            System.err.println("error !");
            e.printStackTrace();
        }
    }

 

相关标签: httppost URL