糖尿病康复,内容丰富有趣,生活中的好帮手!
糖尿病康复 > mysql录入图片数据_mysql插入图片数据

mysql录入图片数据_mysql插入图片数据

时间:2020-11-06 23:11:48

相关推荐

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 = "insert into image( id , image) values(?,?)";

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录入图片数据_mysql插入图片数据》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。