`
文章列表

POI3.9读写Excel

使用POI3.9对excel进行读写   import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.text.ParseException; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFShe ...
1.【window】/【preferences】/【Java】/【code style】/【formatter】/【edit】   2.面板【indentation】 tab policy = spaces only indentation size = 4 tab size = 4 他的作用是只适用空格缩进,不使用table,这样可以去除不同平台下的txt识别问题 选中align fields in columns 他的作用是对其类中定义的属性   3 面板【line wrapping】 maximum line width = 400 他的作用是不让代码自动换行 【 ...
1.在pom.xml中添加对webservice的依赖 <dependency> <groupId>com.ibm.websphere.appserver</groupId> <artifactId>com.ibm.jaxws.thinclient</artifactId> <version>7.0</version> <scope>test</scope> </dependency>   2.传入参数 import javax.xml.bind.a ...
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import org.omg.Dynamic.Parameter; public class BaseSetParam { public void setParam(Object source, Object target) { Class t = target.getClass(); Class s = source.getClass(); Field ...
通过KDCacl将excel文件生成kdc文件,使用java代码进行解析。解析方法如下:   public class KDCTest { public static void main(String[] args) throws Exception { File f = new File("C:\\A.kdc"); CalcEngine calcEngine = CalcEngine.getCalcEngine(f.toURL()); // 以下将excel表格第2行第1列设置为aaa calcEngine.setText(2, 1, ...
1.新建文件命名为:clean.bat 2.粘贴一下内容到该文件: @echo off echo begin clean...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %systemdrive%\*.gid del /f /s /q %systemdrive%\*.chk del /f /s /q %systemdrive%\*.old del /f /s /q %sys ...
import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; public class ExcelImportServiceImpl implements ExcelImportService { public void excelImport(String filePath) { ...
由于maven的库中心(http://repo2.maven.org/maven2)包含的hibernate的最高版本为3.3.2.GA,要想使用hibernate3.6,就需要在maven中配置jboss的repository。修改maven的settings.xml文件,如下: 在<pluginGroups></pluginGroups>中添加   <pluginGroup>org.jboss.maven.plugins</pluginGroup>   在<profiles></profiles>中 ...

Maven坐标

Maven仓库查询 http://search.maven.org 常见的发行包 junit4.x Xml代码 <dependency>       <groupId>junit</groupId>       <artifactId>junit</artifactId>       <version>4.8.2</version>       <scope
1。环境准备      下载wtp-all-in-one-sdk-R-1.5.4-win32,这个是eclipse的web开发插件      下载jakarta-tomcat-5.0.30      下载axis-src-1_4.zip   2。新建一个动态web工程(dynamic web project),命名为eclipse4WS。 把axis-src-1_4.zip中axis1.4\axis-bin-1_4\axis-1_4\webapps\axis\WEB-INF\lib下的jar文件加载到项目中。 
 JDK 1.4.2 + Myeclipse 6.0(实在经不起诱惑,尝尝鲜) + Tomcat 5.0.28 + AXIS 1.4。 AXIS 1.4包可以在http://ws.apache.org/axis/ 找到。 假设所有的环境你已经搭好,并且AXIS包也已经下好了。OK, Here we go~          解压axis-bin-1_4.zip这个包可以看到webapps目录,双击进入把里面的AXIS文件夹拷到 %TOMCAT_HOME%\webapps目录下,之后拷贝activation.jar、mail.jar、tools.jar到%TOMCAT_HOME%\webap ...
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.2.5.ga</version> <exclusions> <exclusion> <groupId>cglib</groupId> <artifactId>cglib</ar ...
物化查询表(MQT)是以一次查询的结果为基础定义的表,可以显著提高查询的性能尤其是提高复杂查询的性能,在数据仓库等大型系统中有着广泛的应用。要使 MQT 正常工作必须对其进行刷新,刷新的方式有多种,每一种方式其 ...
我们在创建新的数据库时,经常会碰上数据库别名已经存在的错误,产生这个错误的原因可能有两种: 1. 这个数据库在系统数据库目录中存在。 在控制中心能够看到和 DB2CLP 窗口中使用 LIST DB DIRECTORY 可以看到。 2. 该数据库被“除去”,而不是被“删除”。
双击setup.exe进入安装启动板,选择安装新产品   初始界面如下   下一步,接受许可   下一步,选典型安装就够了,也可以选定制,然后后面可以看到更多选项,一般可以不用管的,所以这里直接下一步   响应文件,这是用来自动安装的。有时,你需要将DB2 客户端安装到多台机器上,又或者需要将DB2 数据库服务器嵌入到应用程序,并在安装这个应用程序同时安装DB2 数据库服务器。这些情况下,DB2 的自动安装是一个理想的方法。DB2 利
Global site tag (gtag.js) - Google Analytics