2015年3月27日

一些jar命令

摘要: 没怎么用过,先mark一下(1)创建jar包 jar cf hello.jar hello 利用test目录生成hello.jar包,如hello.jar存在,则覆盖(2)创建并显示打包过程 jar cvf hello.jar hello 利用hello目录创建hello.j... 阅读全文

posted @ 2015-03-27 18:30 Erbin 阅读(132) 评论(0) 推荐(0) 编辑

js 发送ajax请求

摘要: 单纯js发送ajax请求,用jquery等js的库的话就没有这么麻烦了 阅读全文

posted @ 2015-03-27 18:28 Erbin 阅读(713) 评论(0) 推荐(0) 编辑

两个时间戳相差多长时间

摘要: 好无聊…… 1 public class DateUtil { 2 public static String getDiff(long start,long end) { 3 int ns = 1000;//一秒多少毫秒 4 int nm = 60 * ns;... 阅读全文

posted @ 2015-03-27 18:26 Erbin 阅读(1037) 评论(0) 推荐(0) 编辑

怎么获得异常的详细信息 printStackTrace

摘要: 我们在捕捉到程序异常时,可以使用e.printStackTrace();来输出详细的信息来分析异常。但是很多时候我们不只是在终端查看,我们会希望将异常的详细信息得到,然后再做一些展示比如写到日志文件中,在jsp页面中展示等。那么我们怎么才能获得和e.printStackTrace();这种详细的信息... 阅读全文

posted @ 2015-03-27 18:17 Erbin 阅读(1280) 评论(0) 推荐(0) 编辑

导航