需要用Aidl,来与系统进程进行交互(关于aidl的介绍:http://chenfeng0104.iteye.com/blog/1255302http://www.cnblogs.com/mydomainlistentome/p/4687173.html)首先在src下建立这样的包: com.an....
分类:
其他 时间:
2015-08-01 12:53:25
收藏:
0 评论:
0 赞:
0 阅读:
320
如何正确合理的建立MYSQL数据库索引索引是快速搜索的关键。MySQL索引的建立对于MySQL的高效运行是很重要的。下面介绍几种常见的MySQL索引类型。在数据库表中,对字段建立索引可以大大提高查询速度。假如我们创建了一个 mytable表:CREATE TABLE mytable( IDINTNO...
分类:
数据库技术 时间:
2015-08-01 12:53:15
收藏:
0 评论:
0 赞:
0 阅读:
237
请求转发:getRequestDispatcherrequest.getRequestDispatcher("success.jsp").forward(request,response);请求重定向:sendRedirectresponse.sendRedirect("success.jp");区...
分类:
其他 时间:
2015-08-01 12:53:05
收藏:
0 评论:
0 赞:
0 阅读:
205
//输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。public class lianxi07 { public static void main(String[] args) { int digital = 0; int character = 0; int ...
分类:
其他 时间:
2015-08-01 12:52:56
收藏:
0 评论:
0 赞:
0 阅读:
180
java的for循环和递归函数调用
分类:
编程语言 时间:
2015-08-01 12:52:25
收藏:
0 评论:
0 赞:
0 阅读:
406
087 Scramble String这道题是divide and conquer。 使用sorted可以快速判断 要不然会超时class Solution: # @param {string} s1 # @param {string} s2 # @return {boolean}...
分类:
其他 时间:
2015-08-01 12:52:15
收藏:
0 评论:
0 赞:
0 阅读:
92
1, 首先 下载一个linux server 系统镜像 ubuntu 64bit下载 http://www.ubuntu.com/download/server/thank-you/?version=14.04.2&architecture=amd64之后依据提示,step by step 安装.....
分类:
系统服务 时间:
2015-08-01 12:51:55
收藏:
0 评论:
0 赞:
0 阅读:
221
普通匹配,多重匹配【HDU】1068Girls and Boys最大匹配★1150Machine Schedule最小点覆盖★1151Air Raid最小路径覆盖★1179Ollivanders最大匹配★1281棋盘游戏行列匹配+求关键点★★149850 years, 50 colors行列匹配★1...
分类:
其他 时间:
2015-08-01 12:51:45
收藏:
0 评论:
0 赞:
0 阅读:
142
---恢复内容开始---最近在做企业证书发布app,从申请企业证书,到测试程序发布到七牛云存储。整了几天终于实现了,整理一下资料。1、首先,申请企业证书。 到苹果开发网站申请企业证书https://developer.apple.com/programs/enterprise/,填写必要的信息,公....
分类:
移动平台 时间:
2015-08-01 12:51:35
收藏:
0 评论:
0 赞:
1 阅读:
1682
一、Git----本地仓库----1.新建一个“本地仓库”git init2.配置仓库①告诉git你是谁git config user.name lnj②告诉git怎么联系你git config user.email lnj@itcast.cn上面一种配置方式是一次性的配置, 会配置到被管理文件的。...
分类:
其他 时间:
2015-08-01 12:51:25
收藏:
0 评论:
0 赞:
0 阅读:
104
char类:1.strcpy(s1,s2);将s2为起始地址的字符串复制到s2中。2.strncpy(s1,s2,k);将s2为起始地址的字符串的前k个复制到s1中。char s1[20],s2[20];cin>>s2;int k=4;strncpy(s1,s2,k);s1[k]='\0';cout...
分类:
其他 时间:
2015-08-01 12:51:15
收藏:
0 评论:
0 赞:
0 阅读:
152
1.使用ZBar项目。下载地址是:http://zbar.sourceforge.net/iphone/index.html2.新建一个项目。3.导入 ZBar的sdk。把ZBar SDK的目录拉入项目,然后选中copy选项4.在项目文件的target中加入 以下framework5.在appDel...
分类:
其他 时间:
2015-08-01 12:50:55
收藏:
0 评论:
0 赞:
0 阅读:
375
#coding:utf-8#author:Blood_Zeroimport retmp_list=[]f=open("E:/ASP.txt","r")f1=f.readlines()for i in f1: rule=re.compile('\W') i=re.sub(rule,'',i...
分类:
编程语言 时间:
2015-08-01 12:50:45
收藏:
0 评论:
0 赞:
0 阅读:
285
Happy birthdayTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 672Accepted Submission(s): 302Proble...
分类:
移动平台 时间:
2015-08-01 12:50:35
收藏:
0 评论:
0 赞:
0 阅读:
298
main.xml View CodeMainActivitypackage com.example.volleydemo;import java.io.File;import java.io.IOException;import ...
分类:
其他 时间:
2015-08-01 12:50:25
收藏:
0 评论:
0 赞:
0 阅读:
366
普通的面向对象是这样的 1 function test(){}; 2 test.prototype.init = function(){ 3 alert('初始化成功'); 4 } 5 test.prototype.css = function(){ 6 alert(...
分类:
Web开发 时间:
2015-08-01 12:50:15
收藏:
0 评论:
0 赞:
0 阅读:
182
To solve this problem, you first need to understand it well. The key problem is tell the difference of scramble from permutations. You may refer to th...
分类:
其他 时间:
2015-08-01 12:50:05
收藏:
0 评论:
0 赞:
0 阅读:
244
集合运算1. 并集:UNION 例: SELECT shohin_id, shohin_mei FROM Shohin UNION SELECT shohin_id, shohin_mei FROM Shohin2; 将Shohin和Shohin2两张表的shohin_id和shohin_mei两列...
分类:
数据库技术 时间:
2015-08-01 12:49:55
收藏:
0 评论:
0 赞:
0 阅读:
262
2015-1-19阅读139评论0From:http://www.cocoachina.com/bbs/read.php?tid=182077版本对应列表:Studio2.xCocosStudio版本 对应Cocos2d-x版本 JS版本 备注v2.1beta ...
分类:
其他 时间:
2015-08-01 12:49:45
收藏:
0 评论:
0 赞:
0 阅读:
275
操作步骤地址:http://wenku.baidu.com/link?url=_DdT7KZtamWfC4ru1hMS2ToFB0p8US-WSXzQmCCdt4K8-DP6VzCYGZ5MMu-RDMS76EFIMpMGl9F0wqWd2s8uVuX1u8_hkjKxdBCb4IKKnum删除三天...
分类:
Windows开发 时间:
2015-08-01 12:49:35
收藏:
0 评论:
0 赞:
0 阅读:
391