import java.sql.*;
import java.io.*;
공개 클래스 WriteDB {
공개 정적 무효 메인(String[] args) {
연결 연결=null;
문자열 드라이버="com.mysql.jdbc.Driver";//驱动
String url="jdbc:mysql://127.0.0.1/test?useUnicode=true;characterEncoding=8859_1";// 数据库联接
try{
Class.forName(driver).newInstance();
conn=DriverManager.getConnection(url,"root","");
파일 파일=새 파일(args[0]);
FileInputStream fis=new FileInputStream(파일);
준비된Statement pstmt=conn.prepareStatement(
"그림(그림) 값에 삽입(?)");
int 바이트=(int)file.length();
System.out.println(바이트);
pstmt.setBinaryStream(1,fis,bytes);//1은 1,2입니다.fileInStream은 1,2입니다.
pstmt.executeUpdate();
conn.close();
fis.close();
}catch(예외 e){
System.out.println(e.getMessage());
}
}
}