相关文章推荐
忧郁的海龟  ·  JS 实现 ...·  1 周前    · 
活泼的柚子  ·  blob转file ...·  1 周前    · 
直爽的烤红薯  ·  java ...·  1 周前    · 
仗义的红薯  ·  ASP.NET Core 中的 Razor ...·  1 年前    · 
import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; public class ByteArrayToBlob { public static void main (String[] args) { byte [] byteArray = new byte []{ 1 , 2 , 3 , 4 , 5 }; try ( Connection conn = getConnection(); PreparedStatement stmt = conn.prepareStatement( "insert into table_name (column_name) values (?)" )) { Blob blob = conn.createBlob(); blob.setBytes( 1 , byteArray); stmt.setBlob( 1 , blob); stmt.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); private static Connection getConnection () throws SQLException { // 这里可以使用你喜欢的数据库连接方式 return null ;
  •