Skip to content

Releases: xcr1234/mohttp

MoHttp 1.2 stable

16 Nov 08:20
Compare
Choose a tag to compare

MoHttp1.2 稳定版

Maven:

<dependency>
    <groupId>io.github.xcr1234</groupId>
    <artifactId>moHttp</artifactId>
    <version>1.2</version>
</dependency>

修改了整体代码结构,让代码可阅读性更强。

MoHttp 1.2 preview

28 Oct 09:37
Compare
Choose a tag to compare
MoHttp 1.2 preview Pre-release
Pre-release

MoHttp1.2 SNAPSHOT

支持异步http请求:

request.execute(new HttpCallback() {
            @Override
            public void complete(Response response) throws IOException {
                System.out.println(response.string());
            }

            @Override
            public void failed(Throwable e) {
                System.out.println("fail!");
            }

            @Override
            public void cancelled() {
                System.out.println("cancelled!");
            }
});

Maven:

    <groupId>io.github.xcr1234</groupId>
    <artifactId>moHttp</artifactId>
    <version>1.2-SNAPSHOT</version>

TODO:

  • http async client support
  • header constants
  • bug fix

MoHttp 1.1 stable

22 Oct 08:53
Compare
Choose a tag to compare

a convenient java http client library,easy to use,high efficiency.

this project has been deployed to maven central repository.

http://mvnrepository.com/artifact/io.github.xcr1234/moHttp/1.1

MoHttp 1.0

08 Oct 10:03
Compare
Choose a tag to compare

deprecated