项目作者: yegor256

项目描述 :
Object-Oriented HTTP Client
高级语言: Java
项目地址: git://github.com/yegor256/cactoos-http.git
创建时间: 2018-04-02T08:13:23Z
项目社区:https://github.com/yegor256/cactoos-http

开源协议:MIT License

下载


Donate via Zerocracy

EO principles respected here
Managed by Zerocracy
DevOps By Rultor.com
We recommend IntelliJ IDEA

Build Status
Javadoc
PDD status
Maven Central
License

Test Coverage
SonarQube

Cactoos-HTTP is a experimental HTTP client, fully object-oriented.

These are the design principles behind Cactoos-HTTP.

All you need is this:

  1. <dependency>
  2. <groupId>org.cactoos</groupId>
  3. <artifactId>cactoos-http</artifactId>
  4. <version><!-- Get it here: https://github.com/yegor256/cactoos-http/releases --></version>
  5. </dependency>

Java version required: 1.8+.

StackOverflow tag is cactoos.

We are well aware of competitors
(most likely they are more powerful than our client, but less object-oriented):

How to use

Ht stands for HTTP. We are not using Http just in order to look
a bit different than all other libraries.

To make a simple HTTP GET request and read its body:

  1. String body = new TextOf(
  2. new HtBody(
  3. new HtResponse(
  4. "http://www.google.com"
  5. )
  6. )
  7. ).asString();

This one sends a PUT request with a multi-part form and
reads back some headers and the response code (mind the usage of StickyInput):

  1. Input head = new StickyInput(
  2. new HtHead(
  3. new HtResponse(
  4. new HtWire("www.example.com"),
  5. new Joined(
  6. "\n\r",
  7. "PUT / HTTP/1.1",
  8. "Host: www.example.com"
  9. ).asString()
  10. )
  11. )
  12. );
  13. int status = new HtStatus(head).intValue();
  14. Map<String, String> headers = new HtHeaders(head);

Questions

Ask your questions related to cactoos library on Stackoverflow with cactoos tag.

How to contribute?

Just fork the repo and send us a pull request.

Make sure your branch builds without any warnings/issues:

  1. mvn clean install -Pqulice

License (MIT)

Copyright (c) 2018 Yegor Bugayenko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.