What I\'m looking for specifically is some code in Java that will take a Map object and convert it into a query string that I can append to a URL I return. I\'
There's this online, so you can simply call any of:
InputStream serverInput = post(URL url, Map parameters);
InputStream serverInput = post(URL url, Map parameters);
InputStream serverInput = post(URL url, Map cookies, Map parameters);
InputStream serverInput = post(URL url, String[] cookies, Object[] parameters);
InputStream serverInput = post(URL url, Object[] parameters).
He provides the source code too.