To get any further in my Gaia bot development, I need to be able to login. I have the entire login down, the only problem I'm having is managing cookies. The HTTP Wrappers I'm using right now were made by Isonyx and don't support cookies. I was originally going to use JSoup, but I need the HTTP Wrappers to be able to export the page source as a string, which JSoup can't do. I was then going to try Apache HTTP Utilities, but it seems way too complicated for what I need. I then downloaded cURL and it looked really promising and everything, and then I noticed the Makefile. So, the cURL for Java is made for linux systems, and thus I can't use it.

So, does anyone know of HTTP Wrappers for Java that support cookies? And if not, anyone know a simple tutorial for Apache HTTP Utilities or on how to install cURL for Java on a windows system? I'm using NetBeans as an IDE if that helps.

Thanks!