Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - How to get floating-point data in JSP web page programming web page conversion? Is the character type request.getParameter () or floating-point data?
How to get floating-point data in JSP web page programming web page conversion? Is the character type request.getParameter () or floating-point data?
string a = request . getparameter();

Single-precision floating point: float.parsefloat (a);

Double-precision floating point: double.parsedouble (a);

It turns out that someone has already answered.