此文使用的ibeacon模块是april beacon,至于什么是ibeacon。本文不做解释,具体请自查。 一个april beacon里携带的信息如下 具体是什么意思呢 Proximity UUID :这是将你所有的beacon与其他人的beacon设备区别开的id!例如,目前在商店里某个区域分 ...
分类:
移动开发 时间:
2016-11-24 18:36:13
阅读次数:
281
org.apache.commons.lang.StringUtils中方法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作方法的补充,并且是null安全的(即如果输入参数String为null则不会抛出NullPointerException,而是做了相应 ...
分类:
其他好文 时间:
2016-11-23 22:37:29
阅读次数:
272
转自:http://www.cnblogs.com/mchina/archive/2013/01/03/2840040.html 由于在6系列里面,portmap已经改名了 ,6系列需要使用 service rpcbind start启动 一、NFS服务简介 NFS 是Network File Sy ...
分类:
系统相关 时间:
2016-11-22 02:20:07
阅读次数:
353
1、用for循环 可以和 数组交叉使用,有的东西可以替换,哪个方便 就使用哪一个。 2、string m=“abcd”; char []q=m.toCharArray(); 后面这句话能实现2 个功能,(1):把字符串强制转化为数组;(2):把m的值,变成单个字符后,一次赋值给q[]; 3、如果数组 ...
分类:
编程语言 时间:
2016-11-21 07:39:04
阅读次数:
167
Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more letter at ...
分类:
其他好文 时间:
2016-11-20 13:06:11
阅读次数:
162
console.log(str.constructor.prototype.constructor);// String ...
分类:
其他好文 时间:
2016-11-19 23:20:26
阅读次数:
162
此方法适用于windows系统正常,linux和windows 双系统下恢复windows系统引导。需要使用windows安装u盘 1. 启动至windows安装u盘,点击修复计算机 2. 进入命令行界面 3. 采用cd C: dir cd D: dir的方式检查磁盘,找到windows系统所在的盘 ...
在数字后面加上不同的字母来表示不同的进位制。B(Binary)表示二进制,O(Octal)表示八进制,D(Decimal)或不加表示十进制,H(Hexadecimal)表示十六进制。 例如:(101011)B=(53)O=(43)D=(2B)H 二进制 → 十进制 方法:二进制数从低位到高位(即从右 ...
分类:
其他好文 时间:
2016-11-15 11:12:55
阅读次数:
282