我尝试了不同的解决方案,但是当我失败时,我需要知道我的代码有什么问题以及应该是什么。
这是我的logcat错误
E/AndroidRuntime: FATAL EXCEPTION: main
Process: freemig.freemigmessenger, PID: 31699
java.lang.NumberFormatException: s == null
at java.lang.Integer.parseInt(Integer.java:570)
at java.lang.Integer.parseInt(Integer.java:643)
它发生在按钮点击事件
上 private class SentMessageHolder extends RecyclerView.ViewHolder {
TextView messageText, timeText;
ImageButton iB;
MsgDltAPIService msgDltAPIService;
String rec_id;
String content_id;
int[] ids = new int[100];
SentMessageHolder(final View itemView) {
super(itemView);
messageText = itemView.findViewById(R.id.text_message_body);
timeText = itemView.findViewById(R.id.text_message_time);
iB = itemView.findViewById(R.id.sentMessageTextDelete);
msgDltAPIService = RestClient.getClient().create(MsgDltAPIService.class);
iB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
userAuthenticationKey = new UserAuthenticationKey(mContext.getApplicationContext());
sharedPreferences = mContext.getApplicationContext().getSharedPreferences("user authentication", MODE_PRIVATE);
editor = sharedPreferences.edit();
ids[0] = Integer.parseInt(content_id);
final MsgDltRequest msgDltRequest = new MsgDltRequest(
ids,
rec_id);
Call<MsgDltResponse> call =
msgDltAPIService.msgDlt(userAuthenticationKey.getUserTokenKey(),
msgDltRequest);
call.enqueue(new Callback<MsgDltResponse>() {
@Override
public void onResponse(Call<MsgDltResponse> call, Response<MsgDltResponse> response) {
Toast.makeText(mContext.getApplicationContext(), "" + response.body().getData(),
Toast.LENGTH_LONG).show();
}
@Override
public void onFailure(Call<MsgDltResponse> call, Throwable t) {
Toast.makeText(mContext.getApplicationContext(), "please try again",
Toast.LENGTH_LONG).show();
}
});
}
});
}
void bind(Datum2 message) {
messageText.setText(message.getMsg());
// Format the stored timestamp into a readable String using method.
timeText.setText(message.getCreatedAt().getFormatTime());
content_id.valueOf(message.getContentId().toString()) ;
if (! message.getOriginatorId().equals(userID)){
rec_id.valueOf(message.getOriginatorId());
}
else {
rec_id = null;
}
}
}
它给我这一行的错误
ids[0] = Integer.parseInt(content_id);
我之前说过,我尝试了几件事,但我的代码应该是什么? My full class is here。还有一件事我正在使用适配器类。
答案 0 :(得分:2)
您可以使用TextUtils
这样的实用程序方法,
if (!TextUtils.isEmpty(content_id) && TextUtils.isDigitsOnly(content_id)) {
ids[0] = Integer.parseInt(content_id);
} else {
ids[0] = 0;
}
在设置content_id时,您可以这样设置,content_id = message.getContentId().toString();
代替content_id.valueOf(message.getContentId().toString()) ;
答案 1 :(得分:1)
将语句放在try
和catch
块中以处理异常。
try{
ids[0] = Integer.parseInt(content_id);
}catch(NumberFormatException ex){ // handle your exception
...
}
或简单的整数匹配 -
String input=...;
String pattern ="-?\\d+";
if(input.matches("-?\\d+")){ // any positive or negative integer or not!
...
}
答案 2 :(得分:1)
Log说它是NumberFormatException,你试图转换为int的String是null。 Integer.parseInt(content_id)仅在content_id不为null时才有效,并且它是一个有效的整数。
因此,在您的情况下,您可以添加一个检查以查看字符串是否为空。如果字符串不为null并仍然给出NumberFormatException,则该字符串不是有效的整数,可以使用try catch语句处理。
if (content_id != null) {
try {
ids[0] = Integer.parseInt(content_id);
} catch(NumberFormatException e) {
// Deal with the situation like
ids[0] = 0;
}
}
答案 3 :(得分:0)
String str = arraylist.get(position); //check your value from Arraylist
if (!TextUtils.isEmpty(str) && TextUtils.isDigitsOnly(str)) {
yourTextview.setText(str);
} else {
yourTextview.setText("Your default value");
}