0

データベースにblobフィールドとして保存するzipファイルがあります。そこからダウンロードしたいのですが、zipファイルが壊れています。7zipからしか開けません。DBにアップロードする前にファイルを開こうとしたとき、およびDBにあるときは、ファイルに問題はありません。データベースからblobとしてファイルを取得すると、UNIXで解凍しようとするとこのエラーが発生します。

    Archive:  test.zip
      End-of-central-directory signature not found.  Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive.  In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
    unzip:  cannot find zipfile directory in one of test.zip or
            test.zip.zip, and cannot find test.zip.ZIP, period.

データベースからzipを取得するときのコードは次のとおりです。

        public oracle.sql.BLOB GetBlob(Connection myConn, 
                                       CallableStatement cstmt) throws Exception {
            String strSql = null;

            BLOB tempBlob = null;
            try {

                strSql = .... // Here is the sql procedure which I called to retrieve the blobl field.
                cstmt = myConn.prepareCall(strSql);
                cstmt.registerOutParameter(1, OracleTypes.BLOB);
                cstmt.setLong(2, request_id);
                cstmt.execute();
                tempBlob = (oracle.sql.BLOB)cstmt.getObject(1);
                int bufsize = tempBlob.getBufferSize();

            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            }
            return tempBlob;

ここに読書があります:

                oracle.sql.BLOB tempBlob = null;
            Connection myConn = null;
            CallableStatement cstmt = null;

            try {
                myConn = DBHelper.getConnection();
                if (null == myConn)
                    throw new SQLException();
                tempBlob = GetBlob(myConn, cstmt);

                int bufsize = tempBlob.getBufferSize();
                InputStream in = tempBlob.getBinaryStream();
                int length = 0;

                byte buf[] = new byte[bufsize];
                while ((in != null) && ((length = in.read(buf)) != -1)) {
                    out.write(buf, 0, length);

                }
                in.close();
                //          out.flush();
                //          out.close();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                if (null != myConn) {
                    try {
                        myConn.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                if (cstmt != null) {
                    try {
                        cstmt.close();
                    } catch (SQLException e) {
                    }
                }

            }

誰かが私を助けてくれませんか。

前もって感謝します。

4

1 に答える 1

2

前後のファイルを比較します。違いは、何がうまくいかないかのヒントを与えるはずです。

考えられる原因は次のとおりです。

  • 最後にバイトがありません
  • 変換されたバイト
  • めちゃくちゃなバイト順

最初の 10 個、最後の 10 個、および合計バイト数を見れば、何が起こっているのかを十分に理解できるはずです。

于 2012-08-28T09:07:27.897 に答える