0

我正在尝试下载在 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);
  }'
4

1 回答 1

1

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

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

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

于 2012-04-20T05:49:59.637 回答