码迷,mamicode.com
首页 > 2015年02月07日 > 全部分享
获取JAVA[WEB]项目相关路径的几种方法
在jsp和class文件中调用的相对路径不同。在jsp里,根目录是WebRoot 在class文件中,根目录是WebRoot/WEB-INF/classes 当然你也可以用System.getProperty("user.dir")获取你工程的绝对路径。如下为在Jsp,Servlet,Java中详细...
分类:编程语言   时间:2015-02-07 18:50:45    阅读次数:156
LeetCode 032 Longest Valid Parentheses
题目描述: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
LeetCode 037 Sudoku Solver
题目要求: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
周记 2015.02.07
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
UNIX环境高级编程第二版勘误errata
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
poj3675 求多边形与圆的面积交
题意:给出多边形的顶点坐标、圆的圆心坐标和半径,求面积交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
LeetCode 033 Search in Rotated Sorted Array
题目要求: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
常用到jq的ajax
1.jq 中的 ajax$(document).ready(function(){ $("#result").bind("input propertychange",function(){ $.ajax({ ...
分类:Web程序   时间:2015-02-07 18:50:21    阅读次数:188
pyqt颜色字符
fromPyQt4.QtGuiimportQPlainTextEdit,QWidget,QVBoxLayout,QApplication,\QFileDialog,QMessageBox,QTextBrowser,QDockWidget,\QMainWindow,QIcon,QHBoxLayout,...
分类:其他好文   时间:2015-02-07 18:50:40    阅读次数:1355
Minigui3.0 自定义遥控输入引擎
minigui
分类:其他好文   时间:2015-02-07 18:50:13    阅读次数:166
WebService简单实现
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 常用命令
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经常在使用一段时间后,连接爆满且不释放。印象中,Redis 2.4.8以下的版本由于设计上的主从库同步问题,就会导致整个问题,不知是否确为这个Bug所致。但从那以后,我就很少敢去尝试使用Redis。曾想转投Mon...
分类:其他好文   时间:2015-02-07 18:48:24    阅读次数:193
HFS - 简单的将个人电脑变服务器!
网络硬盘HTTP File Server(HFS)是我目前所知道的最简便的P2P文件分享方式,只一个大小为559KB的单文件绿色软件(hfs.exe)就可以在瞬间不经过任何系统设置将一台普通的联网个人电脑变成一台类似FTP服务器,只不过文件的链接形式是以“http://”开头,并非“ftp://”开...
分类:其他好文   时间:2015-02-07 18:48:11    阅读次数:1154
使用nodejs调用微信发送红包
前置条件:申请微信发送红包的账户及其权限 依赖 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
ORM PetaPoco 框架的 CRUD 操作
PetaPoco 的查询操作 public IEnumerable GetAll(string sqlString, object[] obj) { try { IEnumerable target; ...
分类:其他好文   时间:2015-02-07 18:49:04    阅读次数:219
1243条   上一页 1 ... 17 18 19 20 21 22 23 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!