gpt4 book ai didi

java.lang.NumberFormatException : For input string: ""

转载 作者:行者123 更新时间:2023-12-01 18:41:32 24 4
gpt4 key购买 nike

Exception in thread "main" java.lang.NumberFormatException: For input string: "    " 
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Long.parseLong(Long.java:430)
at java.lang.Long.valueOf(Long.java:540)
at PckUtiles.lexec.leer(lexec.java:62)
at PckUtiles.lexec.verificar(lexec.java:34)
at PckjForms.Main.main(Main.java:40)

*运行项目时出现下一个错误“线程“main”java.lang.NumberFormatException 中的异常:对于输入字符串:”我的类的功能是避免重新运行应用程序。可以帮助定位故障。非常感谢*

这是我的 lexec 类

public class lexec {
private String ruta = System.getProperties().getProperty("user.dir");
private File archivo = new File(ruta + "\\Sifme.tmp");
private int contador = 20;

public lexec(){};

public boolean verificar(){
if(archivo.exists()){
long time = leer();
long res = rTiempo(time);
if(res<contador){
JOptionPane.showMessageDialog(null, "La aplicación esta en ejecución");
System.exit(0);
return false;
}else{
tarea_();
return true;
}
}else{
sifme();
tarea_();
return true;
}
}

public long leer(){
String line = "0";
BufferedReader br;
try{
br = new BufferedReader(new FileReader(archivo));
while(br.ready()){
line = br.readLine();
}
}catch(IOException e){
System.err.println(e.getMessage());
}
return Long.valueOf(line).longValue();
}
public void tarea_(){
ScheduledExecutorService ses = Executors.newSingleThreadScheduledExecutor();
ses.scheduleAtFixedRate(
new Runnable(){
@Override
public void run(){
sifme();
}
},1000,contador*1000,TimeUnit.MILLISECONDS);
}

public void sifme(){
Date fecha = new Date();
try{
BufferedWriter bw = new BufferedWriter(new FileWriter(archivo));
bw.write(String.valueOf(fecha.getTime()));
bw.close();
}catch(IOException e){
System.out.println(e.getMessage());
}
}
public long rTiempo(long tiempoN){
Date fecha = new Date();
long t1 = fecha.getTime();
long tiempo = t1 - tiempoN;
tiempo = tiempo/1000;
return tiempo;
}
public void detruir_(){
if(archivo.exists()){
archivo.delete();
System.exit(0);
}
}
}

最佳答案

虽然您没有告诉我们哪一行给我们带来了错误(即使您应该告诉我们),但我可以推断出这是这一行:

    return Long.valueOf(line).longValue();

问题是 line 是一个空格字符串,而不是数字字符串。您不能指望将空格转换为 Long。这就是您收到此错误的原因。

关于java.lang.NumberFormatException : For input string: "",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19801823/

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