- 浏览: 108722 次
- 性别:
- 来自: 北京
最新评论
-
lhs295988029:
这个异常出现在执行读demo.xls的read()方法中,原因 ...
jxl.read.biff.biffexception: the input file was not found -
azhqiang:
照你写的还是报那个错。请问你是怎么解决的
jxl.read.biff.biffexception: the input file was not found
文章列表
出现SQLSERVER无法启动的问题,错误信息如下:
The SQL Server failed to initialize VIA support library [QLVipl.dll]. This normally indicates the VIA support library does not exist or is corrupted. Please repair or disable the VIA network protocol. Error: 0x7e.
TDSSNIClient initialization failed with error 0x7e, stat ...
1.在%Tomcat 6.0%\conf\Catalina\localhost目录下新建一个xml文件,文件名为工程名
<?xml version='1.0' encoding='utf-8'?>
<Context>
<Resource name="SQLServerDB" auth="Container" ...
删掉工程WEB-INF\lib\下的jsp-api.jar和servlet-api.jar两个文件,重启服务OK!
缺少jsr173_1.0_api.jar 包
或者jdk版本不对(包括工程和tomcat等服务器的jdk版本)
以前的一个xfire工程,今天重新导入后不能运行,修改工程的jdk版本不行,最后发现是tomcat环境的jdk版本问题,囧!
错误提示:
org.eclipse.ui.PartInitException: Project newsjq is not configured as a MyEclipse Web-Struts Project. Therefore the MyEclipse Struts Editor may not be used with struts-config.xml. The default XML Editor has been used to open the file instead
在.project文件里添加一行代码<nature>com.genuitec.eclips ...
工程在eclipse是正常的,移植到myeclipse后出现异常:
org.xml.sax.SAXParseException: XML document structures must start and end within
搞了一上午,是有个xml文件中的中文注释的缘故
java 连接:连接串:jdbc:jtds:sqlserver://localhost:1433;instance=SQLEXPRESS;DatabaseName=test或 jdbc:jtds:sqlserver://localhost:1433/test;instance=SQLEXPRESS此外,自定义实例名必须启动 Sql server browser服务,否则,出现异常:
就是这个异常了:org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Unable to ...
public class SmUserPagePropBean extends BcmsBean {
private SmUserPagePropModel smUserPagePropModel;
省略set和get方法
}
异常:
javax.servlet.ServletException: BeanUtils.populate
org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1254)
org.apache.struts.action.RequestProcessor ...
1. 修改项目的.project文件,保存,不记得是否需要重启Eclipse了。 在<natures> … </natures>
之间添加下列三行配置
<nature>org.eclipse.wst.common.project.facet.core.nature</nature><nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature><nature>org.eclipse.jem.workben ...
转载自http://blog.sina.com.cn/s/blog_4ce1838b01000avd.html
本文将阐述如何用POI来读取/写入完整的Excel文件。
约定:POI项目2.0版现在已经接近正式发行阶段,开发进度迅速,不断有新的功能集成到原有的系统,同时也有对原有系 ...
使用jxl操作excel时异常:
jxl.read.biff.biffexception: the input file was not found
at jxl.read.biff.file.<init>(file.java:117)
at jxl.workbook.getworkbook(workbook.java:210)
at jxl.workbook.getworkbook(workbook.java:187)
at ldaptool.dataexport.main(dataexport.java: ...
JDK版本跟jar包不兼容,或者新导入的工程jdk版本跟以前不同
错误消息
消息 在节点 efssV2devNode01 上的服务器 server1 上,对数据源 efssrtps 执行的测试连接操作由于以下异常 com.ibm.ws.rsadapter.exceptions.DataStoreAdapterException: DSRA8101E: DataSource class cannot be used as one-phase: ClassCastException: oracle.sql.converter.CharacterConverter1Byte incompatible with oracle.sql.converter.Charac ...
转载 java常用方法(日期格式化,金额格式化,写文件)
//日期增减的完成
public static void main(String arg[]){
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd HH.mm.ss");
GregorianCalendar gc = new GregorianCalendar();
gc.setTime(new Date());
System.out .println();
// gc.add(1 ...
BeanUtils & PropertyUtils & MethodUtils类使用方法
一、简介:
BeanUtils提供对 Java反射和自省API的包装。其主要目的是利用反射机制对JavaBean的属性进行处理。我们知道,一个JavaBean通常包含了大量的属性,很多情况下,对JavaBean的处理导致大量get/set代码堆积,增加了代码长度和阅读代码的难度。
二、用法:
BeanUtils是这个包里比较常用的一个工具类,这里只介绍它的copyProperties()方法。该方法定义如下:
Java代码
public static void copy ...