gpt4 book ai didi

java - 如何以正确的方式从 EditText 获取 double ?

转载 作者:行者123 更新时间:2023-12-01 07:06:06 25 4
gpt4 key购买 nike

有谁知道如何从 EditText 中解析 double 值?

我知道该怎么做,但这不是我认为的正确方法。有人有最佳实践吗?

谢谢。

最佳答案

你可以试试这个:

double value;
String text =your_edittext.getText().toString();
if(!text.isEmpty())
try
{
value= Double.parseDouble(text);
// it means it is double
} catch (Exception e1) {
// this means it is not double
e1.printStackTrace();
}

关于java - 如何以正确的方式从 EditText 获取 double ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23539713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com