Android Studio错误始终位于非常高的列的第1行

时间:2015-07-09 02:46:08

标签: android android-studio logcat

我需要在我的代码中找到一个错误,该错误显示在logcat中:

07-09 02:42:02.251     939-1229/com.boolbalabs.petlinx E/SyncException﹕ com.google.gson.JsonSyntaxException: java.lang.NumberFormatException: Expected an int but was 1501262120526111 at line 1 column 101693

正如您所看到的,它位于第1行第101693行,这使我相信代码文件在运行时已缩小。它也没有说文件名,因此我不确定要查看哪个类文件。有没有办法解析代码文件,以便他们说出我可以在自己的代码中查看的行号和列号?

另请参阅this question that I asked yesterday which is a similar issue, but the error doesn't even say any line number or column

1 个答案:

答案 0 :(得分:0)

我认为错误是指您正在阅读的JSON文件。数字1501262120526111太大而无法放入int字段。将您正在阅读的字段更改为较长的字段,应该将其读取。