================================

©Copyright 蕃薯耀 2020-01-09

https://www.cnblogs.com/fanshuyao/

使用Ocbc连接是区分电脑是32位还是64位的,需要安装相应的驱动文件,不方便,所以采用第三方的Jar包(UCanAccess)

UCanAccess-4.0.4-bin.zip(自行搜索)

需要的Jar包:

ucanaccess-4.0.4.jar

在Lib文件的jar包:

commons-lang-2.6.jar

commons-logging-1.1.3.jar

hsqldb.jar

jackcess-2.1.11.jar

import java.io.File;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties; import org.apache.log4j.Logger; import com.plan.commons.Row;
import com.plan.commons.RowImpl; public class MdbUtils { private static Logger log = Logger.getLogger(MdbUtils.class);
//odbc方式区分32位和64位系统
/*
private final static String JDBC_DRIVER = "sun.jdbc.odbc.JdbcOdbcDriver";
private final static String JDBC_URL = "jdbc:odbc:driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=";
*/ //使用UCanAccess
private final static String JDBC_DRIVER = "net.ucanaccess.jdbc.UcanaccessDriver";
private final static String JDBC_URL = "jdbc:ucanaccess://"; public static void close(ResultSet resultSet, Statement statement, Connection connection){
try {
if(resultSet != null){
resultSet.close();
//log.info("关闭mdb resultSet连接。");
//System.out.println("关闭mdb resultSet连接。");
}
if(statement != null){
statement.close();
//log.info("关闭mdb statement连接。");
//System.out.println("关闭mdb statement连接。");
}
if(connection != null){
connection.close();
//log.info("关闭mdb connection连接。");
//System.out.println("关闭mdb connection连接。");
}
} catch (SQLException e) {
e.printStackTrace();
log.error("关闭mdb连接出错。" + e);
}
} /**
* mdb文件获取连接
* @param absoluteFilePath
* @return
*/
public static Connection getConn(String absoluteFilePath){
log.info("mdb文件路径absoluteFilePath=" + absoluteFilePath); Properties prop = new Properties();
prop.put("charset", "utf-8");//解决中文乱码(GB2312/GBK)
//prop.put("user", "");
//prop.put("password", ""); String url = JDBC_URL + absoluteFilePath;
Connection connection = null;
try {
connection = DriverManager.getConnection(url, prop);
} catch (SQLException e) {
e.printStackTrace();
log.info("mdb文件获取连接出错。Exception=" + e);
}
return connection;
} /**
* 查询mdb文件的表数据
* @param absoluteFilePath mdb文件绝对路径
* @param sql 查询的sql语句
* @return
*/
public static List<Row> read(String absoluteFilePath, String sql){
log.info("mdb文件路径absoluteFilePath=" + absoluteFilePath);
log.info("mdb查询sql=" + sql); List<Row> rowList = new ArrayList<Row>();
Properties prop = new Properties();
prop.put("charset", "utf-8");//解决中文乱码(GB2312/GBK)
//prop.put("user", "");
//prop.put("password", ""); String url = JDBC_URL + absoluteFilePath;
//PreparedStatement preparedStatement = null;
Statement statement = null;
ResultSet resultSet = null;
Connection connection = null;
try{
Class.forName(JDBC_DRIVER);
connection = DriverManager.getConnection(url, prop);
statement = connection.createStatement();
resultSet = statement.executeQuery(sql);
ResultSetMetaData resultSetMetaData = resultSet.getMetaData(); while(resultSet.next()){
Row row = new RowImpl();
for(int i=1; i<= resultSetMetaData.getColumnCount(); i++){
String columnName = resultSetMetaData.getColumnName(i);//列名
Object columnValue = resultSet.getObject(i);
row.addColumn(columnName, columnValue);
}
rowList.add(row);
}
}catch (Exception e) {
e.printStackTrace();
log.info("mdb文件读取sql出错。Exception=" + e);
throw new RuntimeException(e);
}finally{
close(resultSet, statement, connection);
}
return rowList;
} /**
* 查询mdb文件的表数据
* @param file File
* @param sql 查询的sql语句
* @return
*/
public static List<Row> read(File file, String sql){
return read(file.getAbsolutePath(), sql);
} /**
* 更新mdb文件的表数据,返回更新的记录数量,0表示没有更新(ID不允许更新)
* @param absoluteFilePath mdb文件绝对路径
* @param sql 查询的sql语句
* @return
*/
public static int update(String absoluteFilePath, String sql){
log.info("mdb文件绝对路径,absoluteFilePath=" + absoluteFilePath);
log.info("mdb文件更新,sql=" + sql); Properties prop = new Properties();
prop.put("charset", "utf-8");//解决中文乱码(GB2312/GBK) String url = JDBC_URL + absoluteFilePath;
Statement statement = null;
Connection connection = null;
int updateSize = 0;
try{
Class.forName(JDBC_DRIVER);
connection = DriverManager.getConnection(url, prop);
statement = connection.createStatement();
updateSize = statement.executeUpdate(sql); }catch (Exception e) {
e.printStackTrace();
log.info("mdb文件更新sql出错。Exception=" + e);
throw new RuntimeException(e);
}finally{
close(null, statement, connection);
}
log.info("mdb更新数量,updateSize=" + updateSize + "。sql="+sql);
return updateSize;
} /**
* 更新mdb文件的表数据,返回更新的记录数量,0表示没有更新
* @param absoluteFilePath mdb文件绝对路径
* @param sql 查询的sql语句
* @return
*/
public static int update(String absoluteFilePath, String sql, List<Object> params){
log.info("mdb文件路径absoluteFilePath=" + absoluteFilePath);
log.info("mdb更新sql=" + sql);
Properties prop = new Properties();
prop.put("charset", "utf-8");//解决中文乱码(GB2312/GBK) String url = JDBC_URL + absoluteFilePath;
PreparedStatement preparedStatement = null;
Connection connection = null;
int updateSize = 0;
try{
Class.forName(JDBC_DRIVER);
connection = DriverManager.getConnection(url, prop);
preparedStatement = connection.prepareStatement(sql);
if(params != null && params.size() > 0){
for(int i=0; i<params.size(); i++){
preparedStatement.setObject(i + 1, params.get(i));
}
}
updateSize = preparedStatement.executeUpdate(); }catch (Exception e) {
e.printStackTrace();
log.info("mdb文件更新sql出错。Exception=" + e);
throw new RuntimeException(e);
}finally{
close(null, preparedStatement, connection);
}
log.info("mdb更新数量,updateSize=" + updateSize + "。sql="+sql);
return updateSize;
} /**
* mdb文件sql执行(如新增、删除字段),成功返回true
* @param absoluteFilePath mdb文件绝对路径
* @param sql 查询的sql语句
* @return
*/
public static boolean execute(String absoluteFilePath, String sql){
log.info("mdb文件绝对路径,absoluteFilePath=" + absoluteFilePath);
log.info("mdb文件sql执行,sql=" + sql); Properties prop = new Properties();
prop.put("charset", "utf-8");//解决中文乱码(GB2312/GBK) String url = JDBC_URL + absoluteFilePath;
Statement statement = null;
Connection connection = null;
boolean result = false;
try{
Class.forName(JDBC_DRIVER);
connection = DriverManager.getConnection(url, prop);
statement = connection.createStatement();
statement.execute(sql);
result = true;
log.info("mdb文件执行sql成功。sql=" + sql);
}catch (Exception e) {
e.printStackTrace();
log.info("mdb文件执行sql出错。Exception=" + e);
throw new RuntimeException(e);
}finally{
close(null, statement, connection);
}
return result;
} public static void main(String[] args) {
/*
String sql = "select * from cu_proj_zxgh_land";
//List<Map<String, Object>> listMap = read("C:/db/test.mdb", sql);
List<Row> rowList = read("C:/db/02-地块划分与指标控制图.mdb", sql);
if(rowList != null && rowList.size() > 0){
System.out.println("=====listMap.size()="+rowList.size());
for (Row row : rowList) {
System.out.println(row.toString());
System.out.println("");
}
}
*/ /*
//更新数据
String sql = "update t_user set age=199 where id=1";
System.out.println(update("C:/db/test.mdb", sql));
*/ //preparedStatement
/*
String sql = "update t_user set age=?,email=? where id=?";
List<Object> params = new ArrayList<Object>();
params.add(99);
params.add("bbb@qq.com");
params.add(1);
System.out.println(update("C:/db/test.mdb", sql, params));
*/ //增加列
/*
String sql = "alter table t_user add column gh_id int";
//String sql = "alter table t_user add column my_id datetime not null default now()";
System.out.println(execute("C:/db/test.mdb", sql));
*/
} }

(如果你觉得文章对你有帮助,欢迎捐赠,^_^,谢谢!)

================================

©Copyright 蕃薯耀 2020-01-09

https://www.cnblogs.com/fanshuyao/

Mdb文件工具类,UCanAccess使用,Access数据库操作的更多相关文章

  1. Microsoft Access数据库操作类(C#)

    博文介绍的Microsoft Access数据库操作类是C#语言的,可实现对Microsoft Access数据库的增删改查询等操作.并且该操作类可实现对图片的存储,博文的最后附上如何将Image图片 ...

  2. C# ACCESS数据库操作类

    这个是针对ACCESS数据库操作的类,同样也是从SQLHELPER提取而来,分页程序的调用可以参考MSSQL那个类的调用,差不多的,只是提取所有记录的数量的时候有多一个参数,这个需要注意一下! usi ...

  3. 自动扫描FTP文件工具类 ScanFtp.java

    package com.util; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import ja ...

  4. 读取Config文件工具类 PropertiesConfig.java

    package com.util; import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io ...

  5. Property工具类,Properties文件工具类,PropertiesUtils工具类

    Property工具类,Properties文件工具类,PropertiesUtils工具类 >>>>>>>>>>>>>& ...

  6. Android FileUtil(android文件工具类)

    android开发和Java开发差不了多少,也会有许多相同的功能.像本文提到的文件存储,在Java项目和android项目里面用到都是相同的.只是android开发的一些路径做了相应的处理. 下面就是 ...

  7. Java 实现删除文件工具类

    工具代码 package com.wangbo; import java.io.File; /** * 删除目录或文件工具类 * @author wangbo * @date 2017-04-11 1 ...

  8. HTTP 下载文件工具类

    ResponseUtils.java package javax.utils; import java.io.ByteArrayInputStream; import java.io.File; im ...

  9. Java常用工具类---IP工具类、File文件工具类

    package com.jarvis.base.util; import java.io.IOException;import java.io.InputStreamReader;import jav ...

随机推荐

  1. 《Netlogo多主体建模入门》笔记8

    8 -GINI系数计算与 如何使用行为空间做实验     首先,我们加入保底机制. 对于每一个agent,都有一个随机的保底比例 s(每个agent的 s 不都一样,且s初始化之后不会改变) 进行交易 ...

  2. Git内部原理探索

    目录 前言 Git分区 .git版本库里的文件/目录是干什么的 Git是如何存储文件信息的 当我们执行git add.git commit时,Git背后做了什么 Git分支的本质是什么 HEAD引用 ...

  3. 002.Oracle数据库 , 列别名

    /*Oracle数据库查询日期在两者之间*/ SELECT OCCUR_DATE as "我是一列" FROM LM_FAULT WHERE ( ( OCCUR_DATE > ...

  4. 7.10 Varnish 优化

  5. OpenCV HOGDescriptor 参数图解

    防止以后再次掉入坑中,决定还是在写写吧 OpenCV中的HOG特征提取功能使用了HOGDescriptor这个类来进行封装,其中也有现成的行人检测的接口.然而,无论是OpenCV官方说明文档还是各个中 ...

  6. code first网站发布后数据表中没有数据问题

    code first网站发布后数据表中没有数据问题 (1).将internal sealed class Configuration类访问修饰符改为public  class Configuratio ...

  7. 使用CORDIC算法求解角度正余弦及Verilog实现

    本文是用于记录在了解和学习CORDIC算法期间的收获,以供日后自己及他人参考:并且附上了使用Verilog实现CORDIC算法求解角度的正弦和余弦的代码.简单的testbench测试代码.以及在Mod ...

  8. 【pwnable.kr】 memcpy

    pwnable的新一题,和堆分配相关. http://pwnable.kr/bin/memcpy.c ssh memcpy@pwnable.kr -p2222 (pw:guest) 我觉得主要考察的是 ...

  9. 记一次docker使用异常

    背景: win10 docker 有几天没有用Oracle数据库,突然发现数据库挂了 docker start oracle 报错 具体错误信息: Error starting userland pr ...

  10. 这26个为什么,让初学者理解Python更简单!

    为什么Python使用缩进来分组语句? 为什么简单的算术运算得到奇怪的结果? 为什么浮点计算不准确? 为什么Python字符串是不可变的? 为什么必须在方法定义和调用中显式使用“self”? 为什么不 ...