gpt4 book ai didi

java.lang.NumberFormatException : Invalid int: "" error

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

protected void onCreate(Bundle savingInstanceState){

    super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

ayak1=(EditText) findViewById(R.id.editText1);
say1 = Integer.parseInt(ayak1.getText().toString());
button1=(Button) findViewById(R.id.button1);
button1.setOnClickListener(this);


}


@Override
public void onClick(View v) {
if(v==button1){
int sonuc=(say1)*(6)/(10);
String total = String.valueOf(sonuc);
fiyat.setText(total);
}

这是代码,可以帮忙吗?

最佳答案

您的ayak1.getText().toString()字符串为空。如果您向 Integer.parseInt() 传递一个空字符串(或任何无法解析为 int 的字符串),Integer.parseInt() 会给您 NumberFormatException

关于java.lang.NumberFormatException : Invalid int: "" error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25121806/

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