mysql数据字典导出工具

来源:互联网 发布:cad制图机械软件 编辑:程序博客网 时间:2024/05/23 19:14

下载完成后解压会出现mysqldoc.exe文件:

输入:IP,端口号等信息,点击获取数据库,导出即可.




附生成html文件换行格式化显示源码如下

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.RandomAccessFile;


public class Division {



static String html = "html文件内容";

static String filePath = "F:\\lixiao_软件\\mysql数据字典导出工具\\mysql数据字典导出工具\\shopmm.html";
/**
* @param args
*/
public static void main(String[] args) {
// String after = divisionShops(shops);
String after = dataDirectory(html);

File file = new File(filePath);
try {
createFile(file);
writeTxtFile(after,file);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}


}

public static void divisionShops (String shops){
String shopsAfter = shops.replace(",", "\r\n");
System.out.println(shopsAfter);
}

public static String dataDirectory(String html){
String htmlAfter = html.replace("<h3>", "\r\n\r\n<h3>")
.replace("<table class", "\r\n<table class")
.replace("<thead>", "\r\n\t<thead>")
.replace("<tr><th>", "\r\n\t\t<tr><th>")
.replace("</thead>", "\r\n\t</thead>")
.replace("<tbody>", "\r\n\t<tbody>")
.replace("</tbody>", "\r\n</tbody>")
.replace("</table>", "\r\n</table>");
return htmlAfter;

}

/** 
 * 创建文件 
 * @param fileName 
 * @return 
 */  
public static boolean createFile(File fileName)throws Exception{  
 boolean flag=false;  
 try{  
  if(!fileName.exists()){  
   fileName.createNewFile();  
   flag=true;  
  }  
 }catch(Exception e){  
  e.printStackTrace();  
 }  
 return true;  
}   
  
/** 
 * 读TXT文件内容 
 * @param fileName 
 * @return 
 */  
public static String readTxtFile(File fileName)throws Exception{  
 String result=null;  
 FileReader fileReader=null;  
 BufferedReader bufferedReader=null;  
 try{  
  fileReader=new FileReader(fileName);  
  bufferedReader=new BufferedReader(fileReader);  
  try{  
   String read=null;  
   while((read=bufferedReader.readLine())!=null){  
    result=result+read+"\r\n";  
   }  
  }catch(Exception e){  
   e.printStackTrace();  
  }  
 }catch(Exception e){  
  e.printStackTrace();  
 }finally{  
  if(bufferedReader!=null){  
   bufferedReader.close();  
  }  
  if(fileReader!=null){  
   fileReader.close();  
  }  
 }  
 System.out.println("读取出来的文件内容是:"+"\r\n"+result);  
 return result;  
}  
  
  
public static boolean writeTxtFile(String content,File  fileName)throws Exception{  
 RandomAccessFile mm=null;  
 boolean flag=false;  
 FileOutputStream o=null;  
 try {  
  o = new FileOutputStream(fileName);  
     o.write(content.getBytes("utf-8"));  
     o.close();  
//   mm=new RandomAccessFile(fileName,"rw");  
//   mm.writeBytes(content);  
  flag=true;  
 } catch (Exception e) {  
  // TODO: handle exception  
  e.printStackTrace();  
 }finally{  
  if(mm!=null){  
   mm.close();  
  }  
 }  
 return flag;  
}  
 
 
 
public static void contentToTxt(String filePath, String content) {  
       String str = new String(); //原有txt内容  
       String s1 = new String();//内容更新  
       try {  
           File f = new File(filePath);  
           if (f.exists()) {  
               System.out.print("文件存在");  
           } else {  
               System.out.print("文件不存在");  
               f.createNewFile();// 不存在则创建  
           }  
           BufferedReader input = new BufferedReader(new FileReader(f));  
 
           while ((str = input.readLine()) != null) {  
               s1 += str + "\n";  
           }  
           System.out.println(s1);  
           input.close();  
           s1 += content;  
 
           BufferedWriter output = new BufferedWriter(new FileWriter(f));  
           output.write(s1);  
           output.close();  
       } catch (Exception e) {  
           e.printStackTrace();  
 
       }  
   }  
 




}