勤劳金鱼

文章
3
资源
0
加入时间
3年0月8天

字节到整形的转换

public byte[] intToByte(int i) { byte[] abyte0 = new byte[4]; abyte0[0] = (byte) (0xff & i); abyte0[1] = (byte) ((0xff00 & i) >> 8); abyte0[2] = (byt...

angular 移动端项目跟原生安卓和iOS交互,互调方法

前端H5调用安卓和iOS的方法在这里插入代码片 showRecoeding(item: any) { this.activeId = item; let u = navigator.userAgent let isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //判断是安卓手机 let isIOS = !!u.match(/\(i[^;]+;( U;)? C