我正在尝试在try-catch块中将String转换为Int。在我的情况下,如果单击该按钮,则textview中的数字将从String转换为Int。当我使用OnclickListener时,它可以正常工作,甚至不需要使用try-catch。但是对于OnkeyListener,我收到“ numberformatexception:invalid int”错误。 我什至尝试使用try-catch。但这仍然向我显示此错误。我真的不明白为什么它适用于OnClickListener而不适用于OnKeyListener。这是我的代码-
var ID = findViewById<EditText>(R.id.edt_id)
btn_add.setOnClickListener {
val item=Item(
Integer.parseInt(edt_id.text.toString()),
Integer.parseInt(quan.toString()),
edt_name.text.toString(),
name.toString(),
date_record.toString(),
location_record.toString(),
master_record.toString().toInt()
)
db.addItem(item)
refreshData()
edt_id.setOnKeyListener(View.OnKeyListener { v, keyCode, event ->
if (keyCode == KeyEvent.KEYCODE_ENTER && event.action ==
KeyEvent.ACTION_UP) {
//Perform Code
val ii:String = ID.text.toString()
var id:Int = 0
try {
id = Integer.parseInt(ii)
println(id!!)
Integer.parseInt(quan.toString())
Integer.parseInt(record_code.toString())
println("GG")
edt_id.text.toString()
val item=Item(
id,
Integer.parseInt(quan.toString()),
edt_name.text.toString(),
name.toString(),
date_record.toString(),
location_record.toString(),
Integer.parseInt(record_code.toString())
)
db.addItem(item)
refreshData()
edt_id.text=null
edt_id.requestFocus()
true}
catch (nfe:NumberFormatException )
{ nfe.printStackTrace() }
}
false
})
答案 0 :(得分:0)
如果您使用的是Kotlin,则最安全的方法是使用toIntOrNull()
,例如:
"10".toIntOrNull()
如果字符串不是数字,它将返回null。之后,您可以使用elvis运算符检查数字是否为null,然后返回另一个值:
val number = "ten".toIntOrNull() ?: 0
// "ten" is non number, will return null instead,
// then catch the null with elvis operator ?: and fall back to default value 0
您还可以使代码变得更简单,例如:
val item=Item(
ID.text.toIntOrNull() ?: 0,
quan.toString().toIntOrNull() ?: 0),
edt_name.text.toString(),
name.toString(),
date_record.toString(),
location_record.toString(),
record_code.toString().toIntOrNull() ?: 0
)
db.addItem(item)
refreshData()
edt_id.text=null
edt_id.requestFocus()
true