mysql插入图片数据
生活随笔
收集整理的這篇文章主要介紹了
mysql插入图片数据
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import java.sql.*; import java.util.Scanner; import java.io.*; public class mysql插入圖片 { private static final File File = null;private static String String;public static Connection getConn() { Connection conn = null; try { Class.forName("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/xinxi", "root", "123456"); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } return conn; } public static void add( String fromFileName, String toFileName) { Connection conn = getConn(); ? String sql = <span style="font-family: simsun;">"insert into image( id , image) values(?,?)"</span><span style="font-family: simsun;">;</span>PreparedStatement ps; try { ps = conn.prepareStatement(sql); ps.setString(1, "tupian"); File file1=new File("D:\\test.jpg");InputStream in; in = new BufferedInputStream(new FileInputStream(file1)); ps.setBinaryStream(2, in, (int) file1.length()); int count = 0; count = ps.executeUpdate(); if(count==1) { System.out.println("success"); }else { System.out.println("failed"); } in.close(); ps.close(); conn.close(); } catch (SQLException e) { e.printStackTrace(); }catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } }
總結
以上是生活随笔為你收集整理的mysql插入图片数据的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 07到09程序员对自己工资的态度···
- 下一篇: linux cmake编译源码,linu