从MySQL数据库HIbernate中检索视频

时间:2017-09-06 14:59:43

标签: java mysql hibernate blob

有谁知道如何使用Hibernate从数据库中检索类型为BLOB的视频?

我用这个保存了视频:

File file = new File(videoFilePath);
FileInputStream inputStream = new FileInputStream(file);
Blob blob = Hibernate.getLobCreator(session)
        .createBlob(inputStream, file.length());
course.setVideo(blob);
session.save(course);
blob.free();

我没有在网上找到关于检索视频的大量文档。所以如果你知道一个好方法,请告诉我

0 个答案:

没有答案