String 转float
String myproductPrice=Request().getParameter("productPrice")float productPrice=Float.parseFloat(myproductPrice);
上面的问题是,如果用中文输入法输入:19.0的时候会有问题,用英文输入19.0这样的转化就没问题,
我加了这个也没用:myproductPrice=new String(myproductPrice.getBytes("ISO8859-1"));
有没有什么办法对这两种的输入法多有用的啊??谢谢!