dcharr ha scritto:
Exception in thread "main" java.lang.NumberFormatException: For input string: "chr1"
at java.base/jdk.internal.math.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:2054)
at java.base/jdk.internal.math.FloatingDecimal.parseDouble(FloatingDecimal.java:110)
at java.base/java.lang.Double.parseDouble(Double.java:543)
......
Il messaggio è molto chiaro. Da qualche parte (presumibilmente da input utente o forse da file o altro) arriva una stringa (nel caso sopra "chr1") e si sta tentando di interpretarla come numero double (Double.parseDouble). Ovviamente non funziona!
Perché .... sarebbe da vedere il codice.