0
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);
        }
    }
}
4

2 回答 2

4

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

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

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

于 2013-11-06T00:30:12.427 回答
0

我会认为异常不言自明," "不能解析为Long.

尝试使用类似return line == null ? 0 : line.trim().isEmpty() ? 0 : Long.valueOf(line).longValue();的方法首先确定String值的有效性,并在不是的情况下返回默认值。

如果您不关心区分 anull String或空String,您也可以使用return line == null || line.trim().isEmpty() ? 0 : Long.valueOf(line).longValue();它可能更容易阅读

或者,如果需要,在值不符合您的异常的情况下抛出某种异常

于 2013-11-06T00:33:28.473 回答