欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

java解析sql文件,java解析sql,使用java直接读取sq

来源: javaer 分享于  点击 33915 次 点评:143

java解析sql文件,java解析sql,使用java直接读取sq


使用java直接读取sql语句并执行,在单元测试时用于造数据比较方便

package com.athena.ckx.util;import java.io.FileInputStream;import java.io.InputStream;import java.sql.Connection;import java.sql.Statement;import java.util.ArrayList;import java.util.Arrays;import java.util.List;/** * SQL 脚本执行类 * @author kong * */public final class SqlFileExecutor {    public static void main(String[] args) {        try {            List<String> sqlList = loadSql("src/test/resources/config/script.sql");            System.out.println("size:" + sqlList.size());            for (String sql : sqlList) {                System.out.println(sql);            }        } catch (Exception e) {            // TODO Auto-generated catch block            e.printStackTrace();        }    }    /**     * 读取 SQL 文件,获取 SQL 语句      * @param sqlFile     *            SQL 脚本文件     * @return List<sql> 返回所有 SQL 语句的 List     * @throws Exception     */    private static List<String> loadSql(String sqlFile) throws Exception {        List<String> sqlList = new ArrayList<String>();        try {            InputStream sqlFileIn = new FileInputStream(sqlFile);            StringBuffer sqlSb = new StringBuffer();            byte[] buff = new byte[1024];            int byteRead = 0;            while ((byteRead = sqlFileIn.read(buff)) != -1) {                sqlSb.append(new String(buff, 0, byteRead));            }            // Windows 下换行是 \\r\\n, Linux 下是 \\n            String[] sqlArr = sqlSb.toString()                    .split("(;\\\\s*\\\\r\\\\n)|(;\\\\s*\\\\n)");            for (int i = 0; i < sqlArr.length; i++) {                String sql = sqlArr[i].replaceAll("--.*", "").trim();                if (!sql.equals("")) {                    sqlList.add(sql);                }            }            return sqlList;        } catch (Exception ex) {            throw new Exception(ex.getMessage());        }    }    /**     * 传入连接来执行 SQL 脚本文件,这样可与其外的数据库操作同处一个事物中     *      * @param conn     *            传入数据库连接     * @param sqlFile      *            SQL 脚本文件    可选参数,为空字符串或为null时 默认路径为 src/test/resources/config/script.sql     * @throws Exception     */    public static void execute(Connection conn,String sqlFile) throws Exception {        Statement stmt = null;        if(sqlFile==null||"".equals(sqlFile)){            sqlFile="src/test/resources/config/script.sql";        }        List<String> sqlList = loadSql(sqlFile);        stmt = conn.createStatement();        for (String sql : sqlList) {            stmt.addBatch(sql);        }        int[] rows = stmt.executeBatch();        System.out.println("Row count:" + Arrays.toString(rows));    }}//该片段来自于http://byrx.net
相关栏目:

用户点评