I'm trying to import a CSV file into Java, but when I reach the timestamp value (for instance: 135824328205) I get the following message:
02-25 10:40:48.629: W/System.err(23341): java.lang.NumberFormatException: 1.35998E+12
I would like to store it as a long value, but it isn't works, here is my code:
in.setTS(Long.parseLong(dataArray[2]));
Can anybody help me ? Thanks.