码迷,mamicode.com
首页 > 2015年02月10日 > 全部分享
Android开发这个怎么能少呢?
最新2015.1出版的Android Quick APIs Reference一书真的不错! Android开发者的福音。快来下载吧。 有货!快到你的碗里去。 csdn下载地址:  http://download.csdn.net/detail/u014036026/8437699...
分类:移动开发   时间:2015-02-10 15:22:33    阅读次数:204
android中通用拒绝服务漏洞
该漏洞的描述见链接文章:http://www.cnxhacker.com/2015/01/07/5603.html 主要的原因是使用了Intent中getSerializableExtra() 的API,如果攻击程序使用了app未定义的序列化类,该方法抛出异常,如果未捕获该异常,则导致应用不断crash。如果Activity不需要对外暴漏,则将exported置为false即可。此外,就是针对A...
分类:移动开发   时间:2015-02-10 15:22:37    阅读次数:323
【数据结构】链式队列
//linkqueue.h#include "stdio.h" #include "stdlib.h" #include #define MAXSZIE 30 struct qNode { char name[MAXSZIE]; char author[MAXSZIE]; int Pages; double Price; char IsForeign; struct qNode * next;...
分类:其他好文   时间:2015-02-10 15:22:55    阅读次数:187
百度地图之网点分布(JSP版本)
百度API接口:http://developer.baidu.com/map/jsdemo.htm#a1_1 百度示例源码: body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;font-family:"微软雅黑";} 添加动画标注点 // 百度地图API功能...
分类:Web程序   时间:2015-02-10 15:21:16    阅读次数:222
Axis2 Web服务配置文件services.xml详解
Axis2 Web服务配置文件services.xml详解...
分类:Web程序   时间:2015-02-10 15:22:33    阅读次数:208
CodeForces 148D. Bag of mice(概率dp啊 )
CodeForces 148D. Bag of mice(概率dp啊 )...
分类:其他好文   时间:2015-02-10 15:20:33    阅读次数:175
ZOJ3430---Detect the Virus
Time Limit: 2 Seconds Memory Limit: 65536 KBOne day, Nobita found that his computer is extremely slow. After several hours’ work, he finally found that it was a virus that made his poor computer s...
分类:其他好文   时间:2015-02-10 15:21:51    阅读次数:183
关于ios app名称注册的问题(抢注)
相信很多人都知道抢注域名的事情, 苹果也有类似抢注app名称的问题: 1. 在之前, apple是界定只要你在itunesconnect中心创建app 你就永久拥有改app名称, 别人再创建app时输入你app名称会校验:已经被注册. 2. 但是这样造成了很多人抢注的问题, 俗称"占着茅坑不拉屎",  所以在2010年苹果宣布了注册app之后90天内必须提交代码, 120天必须提交软件...
分类:移动开发   时间:2015-02-10 15:21:08    阅读次数:216
C++之“函数”
函数的定义和声明 一、函数原型的声明原则:     1、如果函数定义在先,调用在后,则调用前可以不必声明;如果调用在先,定义在后,则调用前必须声明。     2、一般将主要的函数放在程序的起始位置声明。     3、函数原型声明规则:         与定义类似,但是声明是一条语句,所以必须以分号结尾。         函数原型中的返回类型、函数名和形参必须与定义该函数时完全一致。 ...
分类:编程语言   时间:2015-02-10 15:20:57    阅读次数:151
存储效率:Git > CVS > SVN
Mozilla's CVS repository was 2.7 GB in size; when imported to Subversion the size grew to 8.2 GB, and when put under Git the size got shrunk to 450 MB. For a source code of size 350 MB it's fairly ni...
分类:其他好文   时间:2015-02-10 15:19:57    阅读次数:157
长周期行业(1980 - 2014)数据整理
首先需要声明,本文纯属一个毫无远见和真才实学的小小散户的愚昧见解,仅供参考。...
分类:其他好文   时间:2015-02-10 15:19:30    阅读次数:200
Activiti5第十弹,RepositoryService
package org.mpc.final_activiti; import java.util.List; import org.activiti.engine.IdentityService; import org.activiti.engine.ProcessEngine; import org.activiti.engine.ProcessEngineConfiguration; im...
分类:其他好文   时间:2015-02-10 15:19:25    阅读次数:164
读取Webpage表中的内容
nutch将从网页中抓取到的信息放入hbase数据库中,默认情况下表名为$crawlId_webpage,但表中的内容以16进制进行表示,直接scan或者通过Java API进行读取均只能读取到16进制信息。     因此nutch提供了readdb选项进行数据获取,将表中的内容读取到一个文本中。  具体用法为: $ bin/nutch readdb Usage: WebTableRea...
分类:Web程序   时间:2015-02-10 15:17:58    阅读次数:155
Json系列之四 揭开JsonConfig的神秘面纱 java to json
//揭开JsonConfig的神秘面纱,for bean to json JsonConfig jsonConfig = new JsonConfig(); //忽略掉bean中含后某个注解的field,不转换成json,可以多次增加不同注解 //jsonConfig.addIgnoreFieldAnnotation(Person.class);//一定是注解的类,我这里没有例子...
分类:编程语言   时间:2015-02-10 15:18:19    阅读次数:264
Javascript:消息框的使用
Javascript有三种基本的消息框:警告框、确认框和提示框。...
分类:编程语言   时间:2015-02-10 15:20:22    阅读次数:121
LeetCode Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 题意:将两个有序的链表合并成一个链表 思路:每次比较链表头就行了,把比较小的插入新的链表中 /** ...
分类:其他好文   时间:2015-02-10 15:19:37    阅读次数:132
微软职位内部推荐-Senior Software Engineer
微软近期Open的职位:Job Title: Senior Software EngineerWork Location: Suzhou/Beijing, ChinaWe are working on understanding and harnessing the data on the inte...
分类:其他好文   时间:2015-02-10 15:18:01    阅读次数:167
1734条   上一页 1 ... 42 43 44 45 46 47 48 ... 102 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!