//定义参数从表单中读取 
String str;
//如表单中有score字段
str=request.getParameter("score");
double score;
//转换为double类型
score=Double.parseDouble(str);