Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http リクエストを 1 つのライナーに変換する Maven アーティファクトまたは既存のフレームワークを探しています。Ruby に詳しい方のために、Get、Put、Post などをサポートする Httparty の行に沿ったものを考えています。
元:
Response response = SomeLibrary.get("https://api.google.com/maps") int code = response.code String body = response.body
Apache Commons http を使用します
<dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency>
ワンライナーではありませんが、非常に簡単で多くの機能をサポートしています。
このUrl.openConnection()とHttpUrlConnectionを試してください