我的新的开源项目happyhttp上线了

happyhttp 简单而强大的http client 库

项目地址:https://github.com/yuancihang/happyhttp

 

 

public static void sampleGet(){
    String text = HttpBuilder.newGet("http://www.xxx.com/").execute().getBodyAsText();
    System.err.println(text);
}

public static void samplePost(){
    HttpResponse response = HttpBuilder
                                .newPost("http://www.xxx.com/")
                                .addFormField("a", "1")
                                .addFormField("b", "2")
                                .execute();
    // print http response header
    for(String name : response.getHeaderMap().keySet()){
        System.err.println(name + ":" + response.getHeaderMap().get(name));
    }

    // print http response body
    System.err.println(response.getBodyAsText());
}

public static void sampleJson(){
    String json = "{\"a\":\"1\"}";
    HttpResponse response = HttpBuilder
                                .newPost("http://www.xxx.com/")
                                .setJsonBody(json)
                                .execute();

    System.err.println(response.getBodyAsText());
}

public static void sampleProxy(){
    String text = HttpBuilder.newGet("http://www.xxx.com/")
                            .setProxy("x.x.x.x", 3128, null, null)
                            .execute()
                            .getBodyAsText();

    System.err.println(text);
}

public static void sampleDownload(){
    HttpBuilder.newGet("http://www.xxx.com/").download(new File("a.html"));
}

public static void sampleMultiPart(){
    HttpResponse response = HttpBuilder
                                .newPost("http://localhost:8080/DemoServlet/upload")
                                .addMultiPartFormField("a", "1")
                                .addMultiPartFormField("f1", "abc".getBytes())
                                .setProxy("127.0.0.1", 8888, null, null)
                                .execute();

    System.err.println(response.getBodyAsText());
}

 

maven 

<dependency>
    <groupId>com.github.yuancihang</groupId>
    <artifactId>happyhttp</artifactId>
    <version>1.2</version>
</dependency>

 

gradle

compile 'com.github.yuancihang:happyhttp:1.2'

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值