インポート java.sql.*;
java.io.* をインポートします。
パブリック クラス WriteDB {
public static void main(String[] args) {
接続 conn=null;
String driver="com.mysql.jdbc.Driver";//驱動
String url="jdbc:mysql://127.0.0.1/test?useUnicode=true;characterEncoding=8859_1";// 数据库联接
試行{
Class.forName(ドライバー).newInstance();
conn=DriverManager.getConnection(url,"root","");
ファイル file=新しいファイル(args[0]);
FileInputStream fis=新しい FileInputStream(ファイル);
PreparedStatement pstmt=conn.prepareStatement(
"ピクチャ(ピクチャ)の値(?)に挿入");
int bytes=(int)file.length();
System.out.println(バイト);
pstmt.setBinaryStream(1,fis,bytes);//1 は入力されるパラメータ 1、2 です。。fileInStream は入力されるデータ、bytes は文字長です
pstmt.executeUpdate();
conn.close();
fis.close();
}catch(例外 e){
System.out.println(e.getMessage());
}
}
}