11 2016 档案

摘要:推荐jar包下载地址: http://mvnrepository.com/ 应有尽有 阅读全文
posted @ 2016-11-30 16:39 探知亦者 阅读(334) 评论(0) 推荐(0)
摘要:org.dom4j.documentexception 解决: 设置xml文件编码格式:<?xml version="1.0" encoding="UTF-8"?> 阅读全文
posted @ 2016-11-30 15:23 探知亦者 阅读(1274) 评论(3) 推荐(0)
摘要:struts2的版本比较多,所以在开发的时候特别要注意版本不同所需引入的包是不一样的。否则,会出现各种问题。而且很难找到问题所在。 以下是我遇到的问题总结: 一、当我运用struts2.3.4.1时,导入jar包: struts2-core-2.3.4.1.jar:核心类库xwork-2.3.4.1 阅读全文
posted @ 2016-11-29 15:22 探知亦者 阅读(901) 评论(1) 推荐(0)
摘要:HTTP Status 404 - There is no Action mapped for namespace / and action name first. type Status report message There is no Action mapped for namespace 阅读全文
posted @ 2016-11-29 12:04 探知亦者 阅读(1191) 评论(0) 推荐(0)
摘要:构建struts2工程师,tomcat报错: HTTP Status 404 - type Status report message description The requested resource is not available. Apache Tomcat/6.0.37 阅读全文
posted @ 2016-11-28 18:39 探知亦者 阅读(1547) 评论(0) 推荐(0)
摘要:win10中文简体繁体切换快捷键Ctrl+Shift+F 阅读全文
posted @ 2016-11-27 15:07 探知亦者 阅读(994) 评论(0) 推荐(0)
摘要:代碼正確,但在Eclipse中無法運行,一直報錯: Could not find or load main class 阅读全文
posted @ 2016-11-27 15:02 探知亦者 阅读(792) 评论(0) 推荐(0)
摘要:ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console. log4j版本:log4j-core-2.7.jar log 阅读全文
posted @ 2016-11-26 21:47 探知亦者 阅读(31574) 评论(0) 推荐(0)
摘要:HTTP Status 500 - Wrapper cannot find servlet class com.servlet.servlet.RegServlet or a class it depends on type Exception report message Wrapper cann 阅读全文
posted @ 2016-11-24 17:31 探知亦者 阅读(1492) 评论(0) 推荐(0)
摘要:Database Configuration Assistant安装失败 向广大园友求助 阅读全文
posted @ 2016-11-19 22:51 探知亦者 阅读(332) 评论(0) 推荐(0)
摘要:length属性:用于获取数组长度。 eg: int ar[] = new int{1,2,3} /** * 数组用length属性取得长度 */ int lenAr = ar.length;//此处lenAr=3 System.out.println("Arr length:"+lenAr); l 阅读全文
posted @ 2016-11-08 17:03 探知亦者 阅读(561) 评论(0) 推荐(0)
摘要:一、oracle 11g登录服务开启 成功安装Oracle 11g后,共有7个服务,这七个服务的含义分别为:1. Oracle ORCL VSS Writer Service:Oracle卷映射拷贝写入服务,VSS(Volume Shadow Copy Service)能够让存储基础设备(比如磁盘, 阅读全文
posted @ 2016-11-06 23:11 探知亦者 阅读(283) 评论(0) 推荐(0)
摘要:1.POI操作excel技术博客记录 2.SSH框架搭建记录 3.SSM框架搭建记录 4.文件上传下载记录 5.面试题整理 阅读全文
posted @ 2016-11-06 23:07 探知亦者 阅读(139) 评论(0) 推荐(0)
摘要:报错信息: jsp页面报错 Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core" 解决方案: /WebContent/WEB-INF/lib目录下导入jstl.jar和standard.jar包 阅读全文
posted @ 2016-11-06 21:17 探知亦者 阅读(305) 评论(0) 推荐(0)
摘要:tomcat报错如下: HTTP Status 404 - Servlet xxx is not available type Status report message Servlet xxx is not available description The requested resource 阅读全文
posted @ 2016-11-04 16:44 探知亦者 阅读(740) 评论(0) 推荐(0)
摘要:tomcat发布工程时,在浏览器输入正确的地址,遇到如下问题: HTTP Status 500 - javax.servlet.ServletException: Wrapper cannot find servlet class xxx or a class it depends on .... 阅读全文
posted @ 2016-11-04 15:20 探知亦者 阅读(492) 评论(0) 推荐(0)
摘要:涉及的核心类:Date类、SimpleDateFormat类、Calendar类 一、 Date型与long型 Date型转换为long型 Date date = new Date();//取得当前时间Date类型 long date2long = date.getTime();//Date转lon 阅读全文
posted @ 2016-11-03 13:14 探知亦者 阅读(401) 评论(1) 推荐(0)