mysql怎么存入服务器的音乐文件,在MySQL数据库中存储歌曲(BLOB支持)

本文介绍如何在MySQL数据库中存储音乐文件,利用BLOB类型将歌曲数据保存,并提供插入和检索文件的代码示例。通过PreparedStatement设置BinaryStream或Bytes进行操作,检索后可写入本地文件。
摘要由CSDN通过智能技术生成

没有什么在存储歌曲不是存储的图像不同。你可以添加为文件名的另一列,你可以做同样的事情来存储文件:然后

//..

PreparedStatement ps = con.prepareStatement("INSERT INTO data_table VALUES(?, ?, ?)");

//...

ps.setInt(1,id);

ps.setString(2, file.getName());

ps.setBinaryStream(3, fs,fs.available());

int i = ps.executeUpdate();

//...

的检索它:

PreparedStatement ps = con.prepareStatement("SELECT file_name, content from data_table where *some condition*");

ResultSet rs = ps.executeQuery();

while(rs.hasNext) {

rs.next();

String fileName = rs.getString("file_name");

Blob blob = rs.getBlob("content");

byte[] content = blob.getBytes(1, (int) blob.length());

//now content contains the data, you ca store it in a file if you need

OutputStream os = new FileOutputStream(new F

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值