jsp中怎么把string强转为double

2025-02-24 21:38:16
推荐回答(1个)
回答1:

String text = "3.1415926";
double value = Double.parseDouble(text);