tags:

views:

81

answers:

2

Search for good JAVA lib for playing with POST-GET requests - Is there any such lib or how to play with POST - GETS from pure JAVA? How to create costume headers and so on.

+1  A: 

all you need is java.net.URL to do basic stuff.

fuzzy lollipop
And what I need for going into more adv stuff?
Blender
@OleJak: what kind of more advanced stuff?
Kip
+2  A: 

I like to use Apache HttpClient. It has pretty much anything you'll need. I use it in production work to connect to REST services from our server. It can handle custom headers, cookies, authentication, etc.

Russell Leggett