クエリ文字列は次のようになるはずです
first=firstvalue&second=secondvalue
これをサーブレットで使用して、クエリ文字列を出力できます
String firstValue = request.getParameter("first");
String secondValue = request.getParameter("second");
System.out.println("Query String:first="+firstValue+"second=+"secondValue);
あなたの場合、クエリ文字列はどこにありますか
first=second=12123423423423432323234
あなたはこれを行うことができます
String first = request.getParameter("first");
String second = request.getParameter("second");
if(first.contains("second=")){
second = first.split("second=")[1];
first = first.split("second=")[0];
}
out.println("[First:"+first+"][Second:"+second+"]");