我尝试使用时间字符串(hh:mm:ss),但我收到此错误:
10-28 12:35:27.682: E/AndroidRuntime(14002): java.lang.NullPointerException
我的主要课程给我打电话:
private TimeUpdater timeupdater;
.
.
.
private Runnable runnable = new Runnable(){
public void run() {
datasource = new DataSource(getBaseContext());
datasource.open();
comment = datasource.getComment("1");
data = comment.toString().split(" ");
/*for(int i=0;i<11;i++)
{
dataUpdate[i]=data[i+1];
System.out.println("U " + dataUpdate[i]);
System.out.println("D " + data[i+1]);
}*/
String a = timeupdater.upTime(dane[5]);
System.out.println(a);
time.setText(timeupdater.upTime(dane[5]));
//for(int i=0;i<12;i++)
//System.out.println(dane[i]);
handler.postDelayed(this, 1000);
}
};
内部数据[5]为00:00:00
这是我的Time Updater课程:
public class TimeUpdater {
private int hh, mm, ss;
private String time;
private String shh, smm, sss;
public String upTime(String time) {
String[] czas = time.split(":");
hh = Integer.parseInt(czas[0]);
mm = Integer.parseInt(czas[1]);
ss = Integer.parseInt(czas[2]);
if(ss<60)
ss++;
if(ss==60)
{
ss=0;
mm++;
}
if(mm==60)
hh++;
if(hh<10)
shh = "0"+hh;
if(mm<10)
smm = "0"+mm;
if(ss<10)
sss = "0"+ss;
this.time = shh + ":" + smm + ":" + sss;
System.out.println(time);
return this.time;
}
我需要因为后来我想做更多的电话。我需要知道如何在其他类公共字符串中创建每秒更改数据
答案 0 :(得分:1)
在调用方法upTime
时,您需要在调用此方法之前实例化其参数(时间)。
这是发生异常的点
String[] czas = time.split(":");
由于时间未实例化,您获得了NullPointerException
答案 1 :(得分:1)
尝试以下方式,
String time = timeupdater.upTime(data[5].toString());
你的方法upTime()需要传递一个String参数。您的data []数组可能是String类型,但为了防止错误,建议使用.toString()方法。
答案 2 :(得分:1)
我通过添加
解决了我的问题 timeupdater = new TimeUpdater();
前
String a = timeupdater.upTime(dane[5]);
感谢您试着帮助我