You are viewing a single comment's thread. Return to all comments →
in the Java8 version they (I don't know how intentionally) added two empty cells in the array:
String []s=new String[n+2];
You must remove them ... or you'll get an NPE in the new BigDecimal(s[i])
Seems like cookies are disabled on this browser, please enable them to open this website
Java BigDecimal
You are viewing a single comment's thread. Return to all comments →
in the Java8 version they (I don't know how intentionally) added two empty cells in the array:
You must remove them ... or you'll get an NPE in the new BigDecimal(s[i])