问题

因为项目中有的地方需要转换数据类型

这次的是 Int -> Long

解决方法
 Long.valueOf(int);

失败了。。。。

(long) myInt;

失败了。。。

Long.parseLong(myInt.toString());

搞定~