String head="http://...:5000/index.aspx?";
String first = "first=";
String firstvalue = URLEncoder.encode( "8388" );
String second = "second=";
String secondvalue = URLEncoder.encode( "2004-07-12 12:12:12" );
String third = "third";
String thiredValue = URLEncoder.encode( "www" );header = head + first + "&" + firstvalue
              + second + "&" + secondvalue
              + third + "&" + thirdvalue;也就是值需要encode。