二十四、处理器(Handler ) 24.1 编写一个常用的Handler Jetty的Handler组件用来处理接收到的请求。 很多使用者不需要编写Jetty的Handler ,而是通过使用Servlet处理请求。你可以调用Jetty内置的Handler 来处理context、security、s ...
分类:
其他好文 时间:
2016-09-13 13:35:22
阅读次数:
196
创建一个代表系统当前日期的Calendar对象 创建一个指定日期的Calendar对象 使用Calendar类代表特定的时间,需要首先创建一个Calendar的对象,然后再设定该对象中的年月日参数来完成。 Calendar类对象字段类型 Calendar类中用一下这些常量表示不同的意义,jdk内的很 ...
分类:
其他好文 时间:
2016-09-13 13:36:29
阅读次数:
109
本文参考 Play Framework 控制层发起HTTP请求 (Send Http Request In Controller) 参考连接地址:http://blog.csdn.net/fhzaitian/article/details/51209148 以下简单记录自己写下的几句代码,解决我这7 ...
分类:
Web程序 时间:
2016-09-13 13:33:22
阅读次数:
145
1.!important能将当前的CSS代码优先级提升为最高 1.1 1.2 但是在IE <=6中这样设置是无效的,需要这样 2.@import的作用类似于link标签,都是将外部CSS代码导入 2.1在style标签中使用 2.2在css文件中使用 ...
分类:
Web程序 时间:
2016-09-13 13:34:54
阅读次数:
224
#include <stdlib.h> #include <string.h> #include "sort.h" //冒泡排序 int bubbleSort(int a[], int n) { int i, j; for (i=n-1; i>=0; i--) { for (j=0; j<i; j+ ...
分类:
编程语言 时间:
2016-09-13 13:36:08
阅读次数:
206
系统要求为Windows Server 2012, 注意:安装Office Web Apps的服务器除了Office Web Apps之外,不能安装其他应用。包括不能安装Office,lync,,sharepoint等应用,即要单独部署。 安装IIS 7.0 打开服务器管理器 添加角色和功能 打开“ ...
分类:
移动开发 时间:
2016-09-13 13:33:01
阅读次数:
220
html里长度单位,目前比较常用到px(像素)、em、% 百分比,要注意其实这三种单位都是相对单位。 ...
分类:
Web程序 时间:
2016-09-13 13:34:01
阅读次数:
214
public class MongoHelper implements NoSqlInterface { private static DB db = null; private static DBCollection jxm_data = null; private static MongoHel ...
分类:
其他好文 时间:
2016-09-13 13:35:14
阅读次数:
104
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. Follow up:Can you ...
分类:
其他好文 时间:
2016-09-13 13:34:58
阅读次数:
110
更改元素样式 一般更改的样式比较少的话,我们直接给style属性赋值 但是一旦需要更改的样式很多的话,可以使用cssText来设置 但是cssText会覆盖行内样式,不会覆盖<style>标签内的样式,不会覆盖外部样式,所以为了解决这个问题,采用样式叠加的方式。 但是IE9以下的浏览器div.sty ...
分类:
Web程序 时间:
2016-09-13 13:33:46
阅读次数:
365
tar命令 解包:tar zxvf FileName.tar 打包:tar czvf FileName.tar DirName gz命令 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzip FileName .tar.gz 和 .tgz 解压 ...
分类:
系统相关 时间:
2016-09-13 13:32:18
阅读次数:
219
Jedis 使用 commons-pool 完成池化实现。 先做个配置文件(properties文件): jedisPool的相关详细配置可参考:http://www.2cto.com/database/201311/254449.html ...
分类:
其他好文 时间:
2016-09-13 13:34:21
阅读次数:
117
①.Software-软件”一词是20世纪60年代才出现的,软件Software——1958年由贝尔实验室的著名统计学家John Tukey 提出软件与硬件一起构成完整的计算机系统,它们是相互依存,缺一不可的。 自从第一台计算机诞生以后,就开始了软件的生产,到现在为止,经过了三个阶段。即程序设计时代 ...
分类:
其他好文 时间:
2016-09-13 13:33:04
阅读次数:
144
现在网上比较流行的蓝牙工具类: @SuppressLint("NewApi") public class ClsUtils { public ClsUtils() { // TODO Auto-generated constructor stub } /** * /Settings/src/com/ ...
分类:
其他好文 时间:
2016-09-13 13:33:01
阅读次数:
625
1.安装strawberry-perl-5.242.安装ora2pg-17.4 #perl Makefile.PL #dmake && dmake install3.安装ora2pg相关moudel #安装方式同ora2pg #DBD-Oracle-1.74 #DBD-Pg-3.5.3 #DBI-1 ...
分类:
其他好文 时间:
2016-09-13 13:32:43
阅读次数:
222
去除停用词 链接1 链接2 结巴分词github 地址 加入自己的词典 ...
分类:
其他好文 时间:
2016-09-13 13:30:49
阅读次数:
120