首頁  >  文章  >  Java  >  Java如何實作產生圖片並且存入資料庫的sql語句詳解

Java如何實作產生圖片並且存入資料庫的sql語句詳解

黄舟
黄舟原創
2017-08-10 13:19:071945瀏覽

這篇文章主要介紹了詳解JAVA產生將圖片存入資料庫的sql語句實現方法的相關資料,這裡就是實現java生成圖片並存入資料庫的實例,需要的朋友可以參考下

詳解JAVA產生將圖片存入資料庫的sql語句實作方法

實作程式碼:

註解很清楚,不在重述~


public class Image2Hex { 
  public static void main(String[] args) { 
    try{ 
      //存放图片的文件夹 
      File list = new File("d:/qmx"); 
      File[] lists = list.listFiles(); 
      String name; 
      //生成的语句存放文件 
      PrintWriter pw = new PrintWriter(new FileWriter("d:/update.txt"),true); 
      FileInputStream fis = null; 
      byte[] b; 
      for(File file : lists){ 
        //张三.jpg 
        name=file.getName(); 
        fis = new FileInputStream(file); 
        b = new byte[fis.available()]; 
        fis.read(b); 
        pw.println("update sys_userinfo set sign_image =0x" + byte2HexStr(b) + " where realName=\'" + name.substring(0,name.length() - 4) + "\'");    
      } 
      pw.flush(); 
      pw.close();   
    }catch(Exception e){ 
      e.printStackTrace(); 
    } 
  } 
  /** 
   * 
   * 描述:byte转字符串 
   */ 
  public static String byte2HexStr(byte[] b) {   
    StringBuffer hs = new StringBuffer();   
    String stmp="";   
    for (int n=0;n< b.length;n++) {   
      stmp=(Integer.toHexString(b[n] & 0XFF)); 
      hs.append((stmp.length() == 1 ? "0" : "") + stmp); 
    }   
    return hs.toString().toUpperCase();   
  }   
}

 現在的專案需要存放用戶公司的員工的簽名圖片,美工做出來幾百張圖片需要存放到資料庫裡,於是就寫了這麼一個將圖片讀成十六進制並拼字update語句存放到文字文件中的方法,效果還是不錯的。

以上是Java如何實作產生圖片並且存入資料庫的sql語句詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn