Do you often write a check at the grocery store, mail tax returns, change service providers for your mobile phone, or apply for a credit card? If you ...
分类:
其他好文 时间:
2014-06-28 23:48:54
阅读次数:
495
The Java Authentication and Authorization Service (JAAS) is a standard extension to the security in the J2SE Development Kit 5.0. JAAS provides the ab...
分类:
Web程序 时间:
2014-06-21 13:45:27
阅读次数:
310
function Person(name, profession) { this.name = name; this.profession = profession; this.speak = function () { ...
分类:
移动开发 时间:
2014-06-21 13:10:16
阅读次数:
199
1. 首先安装idea的jrebel插件, jrebel是收费的,所以要在网上下载验证码。2. 安装好以后再setting 菜单能看到一个jrebel的菜单。3.4.其中需要选中frame失去焦点的时候,Update classes and resource这样每次修改了源码以后,就不用重启服务,可...
分类:
编程语言 时间:
2014-06-21 11:36:48
阅读次数:
274
BACKGROUNDComputer viruses are a common problem for computer users. One typical mode of attack is to send an electronic mail message (e-mail) containi...
分类:
其他好文 时间:
2014-06-21 00:51:41
阅读次数:
285
引用:http://developer.51cto.com/art/201103/250108.htm对JavaScript中call和apply的理解1、相同点:a) 产生的效果或作用完全相同;b) 至少有一个参数;c) 第一个参数必须有且是一个对象(Object),因为就是这个家伙偷懒。2、不同...
分类:
编程语言 时间:
2014-06-18 16:46:15
阅读次数:
236
VC project setting --〉debug中的working directory指的是工作目录在哪里?
工程属性下,Debug下面的 Working Directory 是为了在从本工程跑起的情况下(不管是在调试或者非调试的情况下) 让程序能够找到相应的资源或输出位置,这个可以指定基于.vcproject的相对路径或绝对路径。
Debug下面的Command 是为了...
分类:
其他好文 时间:
2014-06-18 12:07:10
阅读次数:
206
问题:
No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=arm64, VALID_ARCHS=armv7 armv7s)
解决:
Project ->Target->Build Setting ->搜索 Build Active Architecture Only ->把值改成NO...
分类:
其他好文 时间:
2014-06-17 22:20:22
阅读次数:
374
在Android的日常开发中,相信大家都用过SharedPreferences来保存用户的某些settings值。Shared Preferences
以键值对的形式存储私有的原生类型数据,这里的私有的是指只对你自己的app可见的,也就是说别的app是无法访问到的。
客户端代码为了使用它有2种方式,一种是通过Context#getSharedPreferences(String prefNam...
分类:
移动开发 时间:
2014-06-17 18:56:59
阅读次数:
350