在java中从Mysql DB下载视频文件

时间:2012-04-19 06:04:08

标签: java mysql video

我正在尝试下载在Mysql中存储为blob的视频文件。该文件被正常下载但我猜它已损坏。要下载的格式是ogg,webm n mp3。问题是,我尝试使用ffmpeg转换任何视频,它说“在处理过程中发现无效数据”。

我正在使用以下代码

    Blob image = null;
    Connection con = null;
    ResultSet rs = null;
     try{
     Class.forName("com.mysql.jdbc.Driver");
     con = MySqlConnect.getDBConnection();
     String sql = "select videos, filename from sun.videostore where  id ='"+fileID+"'";
     Statement stmt = con.createStatement();
     rs = stmt.executeQuery(sql);
     while (rs.next()) {
    String filename = rs.getString("filename");
    Blob video = rs.getBlob("videos");
    File file1 = new File("C:\\DowloadFile\\" + filename); 
    FileOutputStream foStream = new FileOutputStream(file1);
    if( video != null){ 
        int length = (int) video.length();
        InputStream is2 = video.getBinaryStream();
        int b = 0;
        while(b!=-1){
         b=is2.read();
         foStream.write(b);
        }

    }

    }           
  }catch(Exception e){
     System.out.println("Ecxeption in getting data from DB = "+e);
  }'

1 个答案:

答案 0 :(得分:1)

没有我检查过我上传的文件,它没有损坏....我尝试了另一种方法将视频上传到数据库。

File video = new File(filename);                                   
fis = new FileInputStream(video); 
ps.setBinaryStream(2, fis, (int) video.length());//preparedStatement 

如果我以上述方式上传文件,我会在下载时收到正确的文件。