对,取到的好像是String 的数组,所以你只要这样就可以得到所有的
String [] str = request.getParameterValues("aaa");
for(int i=0;i<str.length;i++){
  out.print(str[i]);
}