最近和数据库的表打交道挺多的,因为暂时做的是接口活。

在这过程中发现要把表转换成对应的javabean类型,字段少的表还行,如果不小心碰到几十个字段的他妈的写起来就有点麻烦了,万一碰到几百个的呢,那不是要崩溃。

于是想写个工具类,自动生成javabean。

先说下思路:

1.读取数据库表,获取里面的字段名。

准备连接数据库的驱动包,这里只是针对了oracle数据库和mysql数据库

2.构建一个stringBuffer字符串,用来生成我们需要的类。

3.写入文件

要求具备相应的文件流知识。

好了,准备工作就这些,下面附上代码,

package com.tool;
/*
 * 给出数据库JAR包,数据库链接路径,数据库表空间名,数据库名,数据库密码,表名
 *可以提取出来创建表属性的javaBean文件,并且提供标准的get,set方法。
 * 此程序将所有字段和数据提取出来定义为String类型,如有别的需要可以提取表中字段的类型和别的表信息,自动生成
 * java文件
 * \t 表示 空格
 * \r 表示换行 等价于 \n
 * ResultSetMetaData 关键
 * */
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
 
public class SqlToBean {
 private Connection conn = null;    //保存链接路径
 private Statement stmt = null;     //建立连接
 private ResultSetMetaData meta = null;  //保存表属性信息
 private ResultSet rs = null;  //查询结果集
 private OutputStreamWriter osw = null;
 private BufferedWriter bw = null;
 private FileOutputStream fos = null;
 private static StringBuffer coding = new StringBuffer();  //字符串缓冲区
 private String driver = null;    //数据库包名
 private String url = null;          //路径名
 private String table = null;        //表空间名
 private String password = null;     //密码
 private String tableName = null;    //表名
 
 public SqlToBean(String driver, String url, String table, String password, String tableName) {
  this.driver = driver;
  this.url = url;
  this.table = table;
  this.password = password;
  this.tableName = tableName;
 }
 
 private String getCoding(StringBuffer code) {
  return code.toString();
 }
 
 private StringBuffer createGenerate(String property) {
  String prop = property.toLowerCase();
  coding.append("\r \t private String " + prop + ";");
  return coding;
 }
 
 private StringBuffer createMethod(String[] str){
  for(int i=0;i<str.length;i++){
   //str[i].charAt(0) - 32)转成大写   思路
   str[i] = str[i].toLowerCase();
   coding.append("\r \t public void set" + (char)(str[i].charAt(0) - 32)+ str[i].substring(1)+"(String " + str[i] +"){");
   coding.append("\r \t\t this."+str[i] + "=" + str[i] + ";");
   coding.append("\r \t }");
   coding.append("\r \t public String get" + (char)(str[i].charAt(0) - 32)+ str[i].substring(1)+"(){");
   coding.append("\r \t\t return this."+str[i] +  ";");
   coding.append("\r \t }\n");
  }
  return coding;
 }
 /*
  * 关闭与数据库的所有链接
  * */
 private void destroy() {
  try {
   if(conn != null){
    conn.close();
    conn = null;
   }
   if(stmt != null){
    stmt.close();
    stmt = null;
   }
   if(rs != null){
    rs.close();
    rs = null;
   }
 
   if(bw != null){
    bw.close();
    bw = null;
   }
   if(fos != null) {
    fos.close();
    fos = null;
   }
   if(osw != null) {
    osw.close();
    osw = null;
   }
 
  } catch (SQLException e) {
   e.printStackTrace();
  }  catch (IOException e) {
   e.printStackTrace();
  }
 }
 /*
  * 数据库连接发生异常就关闭链接
  * */
 private  void connect () {
  try {
   Class.forName(driver);
   conn = DriverManager.getConnection(url,table,password);
   stmt = conn.createStatement();
 
   rs = stmt.executeQuery("select  * from " + tableName ); //查询下确定结果集是那个表的
   meta = rs.getMetaData();                         //调用结果集的记录表信息的方法
  } catch (ClassNotFoundException e) {
   e.printStackTrace();
   try {
    if(conn != null){
     conn.close();
     conn = null;
    }
    if(stmt != null){
     stmt.close();
     stmt = null;
    }
    if(rs != null){
     rs.close();
     rs = null;
    }
   } catch (SQLException e1) {
    e.printStackTrace();
   }
  }  catch (SQLException e) {
   e.printStackTrace();
   try {
    if(conn != null){
     conn.close();
     conn = null;
    }
    if(stmt != null){
     stmt.close();
     stmt = null;
    }
    if(rs != null){
     rs.close();
     rs = null;
    }
   } catch (SQLException e1) {
    e.printStackTrace();
   }
  }
 
 }
 
 private String[] getColumenName() {
  /*得到表的所有列名以字符串数组的形式返回
   * */
  int count;
  String[] str = null;
  try {
   count = meta.getColumnCount();
   String[] strColumenName = new String[count];
   for(int i = 1;i <= count; i++) {
    strColumenName[i-1] = meta.getColumnName(i);
   }
   str = strColumenName;
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return str;
 }
 /**
  * 写入指定的文件中
  * @param message
  */
 private void writeData(String message,String className) {
  String file = "C:\\"+className+".java";
  try {
   fos = new FileOutputStream(file);
   osw = new OutputStreamWriter(fos);
   bw = new BufferedWriter(osw);
   bw.write(message);
   bw.flush();
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }
 
 }
 
 public StringBuffer createClassName(String className){
  coding.append("public class " + className + "{\n");
  return coding;
 }
 
 public static void main(String[] args) {
  String className = "Hellow";
  //SqlToBean sqlToBean = new SqlToBean("oracle.jdbc.driver.OracleDriver","jdbc:oracle:thin:@192.168.3.11:1521:orcl","mamibon","mamibon","my_standard_data2");
  SqlToBean sqlToBean = new SqlToBean("org.gjt.mm.mysql.Driver","jdbc:mysql://117.79.84.144:3306/wordpress","wangjun","wangjun123","wp_users");
  //连接数据库
  sqlToBean.connect();
  sqlToBean.createClassName(className);
  //获取表的字段
  String[] str ;
  str = sqlToBean.getColumenName();
  for(int i = 0;i<str.length ;i++) {
   sqlToBean.createGenerate(str[i]);
  }
  coding.append("\n");
  sqlToBean.createMethod(str);
  coding.append("\n}");
  //写入文件
  sqlToBean.writeData(sqlToBean.getCoding(coding),className);
  sqlToBean.destroy();
 
  System.out.println("如果觉得这工具类不错,请关注我们的网站:http://www.itbuluoge.com,期待你的入住,程序员俱乐部,为您提供更多的帮助!");
  System.out.println("如果觉得这工具类不错,请关注我们的网站:http://www.itbuluoge.com,期待你的入住,程序员俱乐部,为您提供更多的帮助!");
 }
 
}

java工具类–自动将数据库表生成javabean的更多相关文章

  1. Hibernate由model类自动同步数据库表结构

    在开发中遇到了个问题,每次测试数据库增加表结构的时候,本地pull下最新代码导致启动报错,上网搜了快速解决办法---->hibernate 配置属性中,hibernate.hbm2ddl.aut ...

  2. C# 通过自定义特性 实现根据实体类自动创建数据库表

    .Net新手通常容易把属性(Property)跟特性(Attribute)搞混,其实这是两种不同的东西 属性指的类中封装的数据字段:而特性是对类.字段.方法和属性等元素标注的声明性信息 如下代码(Id ...

  3. 由数据库表生成jpa实体工具

    package cn.net.yto.aaa.dao.generator; /** * 由数据库表生成jpa实体工具 * * @author huike * Created by gf.liu on ...

  4. django根据已有数据库表生成model类

    django根据已有数据库表生成model类 创建一个Django项目 django-admin startproject 'xxxx' 修改setting文件,在setting里面设置你要连接的数据 ...

  5. SqlServer数据库表生成C# Model实体类SQL语句——补充

    在sql语句最前边加上  use[数据库名] 原链接:https://www.cnblogs.com/jhli/p/11552105.html   --[SQL骚操作]SqlServer数据库表生成C ...

  6. SpringBoot使用Hibernate,实现自动创建数据库表【博客数据库设计】

    我们准备设计博客,那就要设计数据库. 我们可以使用Hibernate来自动生成数据库. 博客数据库的结构: 实体类: 博客 Blog 博客分类 Type 博客标签 Tag 博客评论 Comment 用 ...

  7. Java工具类——通过配置XML验证Map

    Java工具类--通过配置XML验证Map 背景 在JavaWeb项目中,接收前端过来的参数时通常是使用我们的实体类进行接收的.但是呢,我们不能去决定已经搭建好的框架是怎么样的,在我接触的框架中有一种 ...

  8. 排名前 16 的 Java 工具类

    在Java中,工具类定义了一组公共方法,这篇文章将介绍Java中使用最频繁及最通用的Java工具类.以下工具类.方法按使用流行度排名,参考数据来源于Github上随机选取的5万个开源项目源码. 一. ...

  9. 快速创建SpringBoot2.x应用之工具类自动创建web应用、SpringBoot2.x的依赖默认Maven版本

    快速创建SpringBoot2.x应用之工具类自动创建web应用简介:使用构建工具自动生成项目基本架构 1.工具自动创建:http://start.spring.io/ 2.访问地址:http://l ...

随机推荐

  1. 【转】微软MVP攻略 (如何成为MVP?一个SQL Server MVP的经验之谈)

    一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 初衷 什么是微软MVP? 成为微软MVP的条件? 如何成为微软MVP? (一) 申请时间划分 (二) 前期准备 (三) ...

  2. 说说iOS中的手势及触摸

    一.响应链 在IOS开发中会遇到各种操作事件,通过程序可以对这些事件做出响应. 首先,当发生事件响应时,必须知道由谁来响应事件.在IOS中,由响应者链来对事件进行响应,所有事件响应的类都是UIResp ...

  3. 在Visual Studio 2010 中创建类库(dll)

    创建类库 选择"文件"->新建->项目->Visual C# ->类库,输入名称,选择位置,单击确定 浏览解决方案资源管理器,可以看到两个C#类,第一个是A ...

  4. 【CocoaPods】CocoaPods基本安装教程

    CocoaPods是什么,有什么用,怎么来等等我就不说了.反正就是一个管理第三方开源框架的~ 1. 配置前 - 本地安装好Ruby环境 2. 安装命令 -> sudo gem install c ...

  5. WPF 多线程处理(1)

    WPF 多线程处理(1) WPF 多线程处理(2) WPF 多线程处理(3) WPF 多线程处理(4) WPF 多线程处理(5) WPF 多线程处理(6) 废话不多说,先上图: 多线程处理数据后在th ...

  6. javascript基础之客户端事件驱动

    我们知道,面向对象发展起来后,“一夜之间”,几乎所有的语言都能基于对象了,JavaScript也是基于对象的语言.用户在浏览器上的行为称作“事件”,之后引发的一系列动作,比如弹窗啦,改变浏览器大小啦, ...

  7. Timer定时器

    try { mTimerGoOut = new Timer(); SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy-MM-dd" ...

  8. C# File

    http://msdn.microsoft.com/zh-cn/library/system.io.file(v=vs.110).aspx using System; using System.IO; ...

  9. boost::bind

    bind并不是一个单独的类或函数,而是非常庞大的家族,依据绑定的参数个数和要绑定的调用对象类型,总共有十个不同的形式,但它们的名字都叫bind. bind接受的第一个参数必须是一个可调用对象f,包括函 ...

  10. vim插件介绍

    代码补全 http://blog.sina.com.cn/s/blog_a6559d920101acv3.html这个牛逼.************************************** ...