运行一下
System.out.println(Integer.MAX_VALUE);
应该就明白了他的值,在我电脑上是2147483647,手机是11位,超出最大值了,改用Long就好了
long start = Long.parseLong(number);