在jsp和class文件中调用的相对路径不同。在jsp里,根目录是WebRoot 在class文件中,根目录是WebRoot/WEB-INF/classes 当然你也可以用System.getProperty("user.dir")获取你工程的绝对路径。如下为在Jsp,Servlet,Java中详细...
分类:
编程语言 时间:
2015-02-07 18:50:45
阅读次数:
156
题目描述:Longest Valid ParenthesesGiven a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses s...
分类:
其他好文 时间:
2015-02-07 18:51:04
阅读次数:
139
题目要求:Sudoku SolverWrite a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character'.'.You may assume tha...
分类:
其他好文 时间:
2015-02-07 18:49:37
阅读次数:
182
1.关闭页面:window.close();2. union和union all的区别是,union会自动压缩多个结果集合中的重复结果,而union all则将所有的结果全部显示出来,不管是不是重复。3. union 和 union all都可以将多个结果集合并,而不仅仅是两个,你可以将多个结果集串...
分类:
其他好文 时间:
2015-02-07 18:50:38
阅读次数:
121
1.1 什么是项目1.1.1 项目的定义项目(Project)是为提供某项独特的产品、服务或成果所进行的临时的一次性努力。项目的特点:(1)临时性(2)独特的产品、服务或成果(3)渐进明细(Progressive Elaboration)1.1.2 信息系统项目的特点典型的信息系统项目有如下特点:目...
分类:
其他好文 时间:
2015-02-07 18:50:07
阅读次数:
174
http://www.apuebook.com/errata2e.html Welcome to the web site dedicated to the support of the second edition of Advanced Programming in the UNIX® Envi...
分类:
其他好文 时间:
2015-02-07 18:50:47
阅读次数:
228
题意:给出多边形的顶点坐标、圆的圆心坐标和半径,求面积交sol:又是模板题啦= =注意poj的C++好像认不出hypot函数,要稍微改写一下。hypot(double x,double y):即返回sqrt(x*x+y*y)的值 1 #include 2 #include 3 #include...
分类:
其他好文 时间:
2015-02-07 18:48:49
阅读次数:
434
题目要求:Search in Rotated Sorted ArraySuppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e.,0 1 2 4 5 6 7might become4 5 6 7 0 ...
分类:
其他好文 时间:
2015-02-07 18:50:41
阅读次数:
122
1.jq 中的 ajax$(document).ready(function(){ $("#result").bind("input propertychange",function(){ $.ajax({ ...
分类:
Web程序 时间:
2015-02-07 18:50:21
阅读次数:
188
fromPyQt4.QtGuiimportQPlainTextEdit,QWidget,QVBoxLayout,QApplication,\QFileDialog,QMessageBox,QTextBrowser,QDockWidget,\QMainWindow,QIcon,QHBoxLayout,...
分类:
其他好文 时间:
2015-02-07 18:50:40
阅读次数:
1355
1. WebService SOAP、WSDL、UDDISOAP(Simple Object Access Protocal,简单对象访问协议),是在分散或在分布式环境中交换信息的简单协议。WSDL(Web Services Description Language,Web服务描述语言) 对WebS...
分类:
Web程序 时间:
2015-02-07 18:47:54
阅读次数:
202
npm install xxx 安装模块npm install xxx@1.1.1 安装1.1.1版本的xxxnpm install xxx -g 将模块安装到全局环境中。npm ls 查看安装的模块及依赖npm ls -g 查看全局安装的模块及依赖npm uninstall xxx (-g) 卸载...
分类:
其他好文 时间:
2015-02-07 18:48:06
阅读次数:
185
大约一年多前,公司同事开始使用Redis,不清楚是配置,还是版本的问题,当时的Redis经常在使用一段时间后,连接爆满且不释放。印象中,Redis 2.4.8以下的版本由于设计上的主从库同步问题,就会导致整个问题,不知是否确为这个Bug所致。但从那以后,我就很少敢去尝试使用Redis。曾想转投Mon...
分类:
其他好文 时间:
2015-02-07 18:48:24
阅读次数:
193
网络硬盘HTTP File Server(HFS)是我目前所知道的最简便的P2P文件分享方式,只一个大小为559KB的单文件绿色软件(hfs.exe)就可以在瞬间不经过任何系统设置将一台普通的联网个人电脑变成一台类似FTP服务器,只不过文件的链接形式是以“http://”开头,并非“ftp://”开...
分类:
其他好文 时间:
2015-02-07 18:48:11
阅读次数:
1154
前置条件:申请微信发送红包的账户及其权限 依赖 blueimg-md5和 xmlreader 库 /common/weixin.js 源码/** * Created by chent696 on 2015/2/7./common/weixin.js *//* 拼接微信红包xml串 *//*se...
分类:
微信 时间:
2015-02-07 18:48:18
阅读次数:
3855
PetaPoco 的查询操作 public IEnumerable GetAll(string sqlString, object[] obj) { try { IEnumerable target; ...
分类:
其他好文 时间:
2015-02-07 18:49:04
阅读次数:
219