`
文章列表
来源:http://hi.baidu.com/nullornotnull/item/7c23012717247d18087508f4 Address already in use: JVM_Bind<null>:8080 在MyEclipse启动或者是tomcat启动的时候出现:Address already in use: JVM_Bind<null>:8080 出现该异常,这里的8080是你的端口,有可能是80或者其他,但是都是一个原因引起的,我在用MyEclipse的时候,有时候MyEclipse突然死掉了,然后我就直接关掉在打开,这时候重启服务器就会出现该异常 ...
来源:http://hi.baidu.com/mark_yz/item/5391200eaebc8b6ed45a1111    a. 编辑tomcat下conf\context.xml,加入:       <Resource name="jdbc/testjndi" auth="Container" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0. ...
You are not authorized to view this page. If you have not changed any configuration files, please examine the file conf/tomcat-users.xml in your installation. That file must contain the credentials to let you use this webapp. For example, to add the manager-gui role to a user named tomcat with a pas ...
来源:http://hi.baidu.com/bivin0603/item/4953c626975625484699628e ROWIDTOCHAR(rowid) 【功能】转换rowid值为varchar2类型 【参数】rowid,固定参数 【返回】返回长度为18的字符串 【示例】 SELECT ROWIDTOCHAR(rowid) FROM DUAL; 【说明】在Oracle中,每一条记录都有一个rowid,rowid在整个数据库中是唯一的,rowid确定了每条记录是在Oracle中的哪一个数据文件、块、行上。 在重复的记录中,可能所有列的内容都相同,但rowid不会相同.
来源:http://www.cnblogs.com/jimmyqwy/archive/2010/07/10/1774934.html 最近稍微接触了下用Java Dom 解析XML的文件。 遇到两个小问题,就在这里做个笔记吧~ 1. Node 的 getNodeValue方法返回的一直是null。 其实还是由于对这个类不熟悉的关系,导致了这个问题。 Node有很多类型,一般<html> </html> 这种类型叫做Element Node。 需要得到其中的文本,直接使用getNodeValue方法是行不通的。 因为此Node中包含的文本其实是属于另外一种 ...

UTF-8的BOM头

来源:http://blog.csdn.net/oscar999/article/details/6280006 字符编码相关信息  http://baike.baidu.com/view/1204863.htm UTF-8 编码的文件可以分为no BOM 和 BOM两种格式。 有bom头的存储或者字节流,它一定是unicode字符集编码。到底属于那一种(utf-8还是utf-16或是utf-32),通过头可以判断出来。 在utf-8编码文件中BOM在文件头部,占用三个字节,用来标示该文件属于utf-8编码 UTF-8的BOM是 EFBBBF,因为UE载入UTF-8文件会转成 ...
来源:http://blog.csdn.net/wyzxg/article/details/4761341 索引坏了,查出这个表的索引 select * from user_indexes t where t.table_name= upper('tb_ware') 组装成下面的语句执行: alter index PK_TB_WARE rebuild online; alter index AK_TB_WARE rebuild online; alter index IDX_TB_WARE_PRINTSTATE rebuild online; alter index IDX_WARE_EN ...
来源:http://ymgcn.blog.163.com/blog/static/1229669720123289101286/ Javascript之文件操作 (IE) 一、功能实现核心:FileSystemObject 对象      要在javascript中实现文件操作功能,主要就是依靠FileSystemobject对象。 二、FileSystemObject编程  使用FileSyst ...
来源:http://stackoverflow.com/questions/7068172/eclipse-3-7-ant-java-1-7 In Eclipse, click the ant file -- Run As -- External Tools Configuration and click on the JRE tab. Select "Run in the same JRE as the workspace"
path 中指定是jdk6,只有juno中用jdk7 1.eclipse.ini 文件末添加 -vm D:\workbench\jdk1.7.0_07\bin\javaw.exe 2.preferences java->installed jres jre home:D:\workbench\jdk1.7.0_07\jre jre name:jre7 jre system libraries: d:\workbench\jdk1.7.0_07\jre\lib 下所有jar
来源:http://blog.csdn.net/fanfanjin/article/details/6531202 <s:if test="deptType==1" >下属 </s:if>如果你的数据库对应的字段类型为整形,可以这样使用; <s:if test="deptType=='1'" >下属 </s:if>如果你的数据库对应的字段类型为char,可以这样使用; <s:if test="deptType=='aa'" >下属 </s:if>如果你的数据库 ...
web.xml 2.4版本里,默认的filter只拦截request。 如果使用request.getRequestDispatcher("xx").forward(request,response),属于服务器内部forward,不会被拦截器拦截,所以你需要为filter配置拦截forward才行。 struts1用的是servlet,forward也会起作用。struts2里的filter的确是个大问题哟。 用filter配置拦截fowward要写成   <filter>   <filter-name>struts2</filter ...
来源:http://yu.an.jin.5.blog.163.com/blog/static/53155811201082410106993/ package org.apache.struts2.dispatcher.ng.filter; import org.apache.struts2.StrutsStatics; import org.apache.struts2.dispatcher.Dispatcher; import org.apache.struts2.dispatcher.ng.PrepareOperations; import org.apache.struts2.dispa ...
来源:http://blog.csdn.net/jerryhui8411/article/details/6790015 FilterDispatcher是struts2.0.x到2.1.2版本的核心过滤器. StrutsPrepareAndExecuteFilter是自2.1.3开始就替代了FilterDispatcher的. StrutsPrepareAndExecuteFilter是StrutsPrepareFilter和StrutsExecuteFilter的组合,那什么时候用StrutsPrepareFilter和StrutsExecuteFilter的组合来替代StrutsPre ...
web.xml struts2(version 2.3.4)的配置 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" x ...
Global site tag (gtag.js) - Google Analytics