发表时间:2018年8月7日 - 强制类型转换 long ll = 300000; int ii = (int)ll; 二、调用intValue()方法 long ll = 300000; int ii= new Long(ll).intValue(); 三、先把...www.cnblogs.com/mayhh/p/9440197.html-快照
阅读文档 - 免费 - 上传时间:2013年1月11日 //long类型转成byte数组 public static byte[] longToByte(long number) { long temp = number; byte[] b = new byte[8]; for (int i = 0; i < b.leng