Running java in my cgi-bin. Via post request. In my java program, I have the browser output in a string e.g.: name=josh&age=34
.... and so on
In my java program String x = "name=joshua";
How can I split this x
string by the = delimiter into a hashtable.
My hashtable is Hashtable<String, String>