<%@pagelanguage="java"import="java.util.*"pageEncoding="ISO-8859-1"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPEHTMLPUBLIC"-//W3..
分类:
其他好文 时间:
2014-08-23 02:29:20
阅读次数:
207
1、Cygwin :Net 下的:openssh,opensslBase 下的:sed (若需要Eclipse,必须sed)默认即可Devel 下的:subversion(建议安装) 2、jdk 安装后在根目录解压jdk,并配置到环境变量:export PATH=$PATH:$JAVA...
问题:
eclipse导入基于Maven的web项目时,发布到tomcat中,发现lib目录及jar包没有发布过去。
解决方案:
eclipse中,选择项目属性Properties --> Deployment Assembly --> Add --> Java Build Path Entries, 然后选择Maven Dependencies。然后重新发布项目到tomca...
分类:
系统相关 时间:
2014-08-22 22:38:14
阅读次数:
259
一行命令启动http-server总结:1. python2.x python2 -m SimpleHTTPServer 80002. python3.x python -m http.server 80003. twistd(python) twistd -n web -p 8000 --path...
分类:
Web程序 时间:
2014-08-22 19:41:29
阅读次数:
266
今天coding的时候碰到一个异常:ERROR: I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property.查了下资料:大部分都是将ntlmauth.dll.....
分类:
数据库 时间:
2014-08-22 16:06:28
阅读次数:
362
Sam在看相关PackageManager代码时,无意中发现Android 下提供一个pm命令,通常放在/system/bin/下。这个命令与Package有关,且非常实用。所以研究之。0. Usage:usage: pm [list|path|install|uninstall]pm list p...
分类:
移动开发 时间:
2014-08-22 15:48:28
阅读次数:
262
映射网络路径:1 $net = New-Object -com WScript.Network2 $drive = "Z:"3 $path = "\\$ip\D$"4 $net.mapnetworkdrive($drive, $path, $true, $username, $password)
分类:
其他好文 时间:
2014-08-22 10:28:15
阅读次数:
190
一、扩展卷组扩展卷组相对简单,只需要添加一个物理卷即可,使用的命令是vgextend,其格式为:vgextendVG_NAME/PATH/TO/PV下面来演示一下扩展卷组的过程:1.首先准备一块id号位8e的分区,具体过程见前文。[root@localhost~]#fdisk/dev/sdcWARNING:DOS-compatiblemodeisdeprecat..
分类:
其他好文 时间:
2014-08-22 02:50:06
阅读次数:
544
报错:Program bash is not found in PATH(如果按照我的方法来的话是没有这个错误的,我之前用别的方法的时候有但是后来还是没解决,写出来放到这里做参考吧)参考原文:http://blog.csdn.net/fuyongbing1986/article/details/11...
分类:
移动开发 时间:
2014-08-21 22:28:24
阅读次数:
302
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below....
分类:
其他好文 时间:
2014-08-21 21:11:24
阅读次数:
213