简体   繁体   English

如何在Java中将java.sql.blob转换为base64编码的字符串

[英]how to convert a java.sql.blob to a base64 encoded string in java

i am trying to get an image out of a mysql database where it is stored as a blob. 我试图从存储为blob的mysql数据库中获取图像。 so far i have tried three more or less different ways, non of which seem to take me anywhere. 到目前为止,我尝试了三种或多或少的不同方法,但似乎没有一种方法可以带我到任何地方。 i must be making some stupid mistake here. 我一定在这里犯了一些愚蠢的错误。

    try {
          // create a java mysql database connection
          String myDriver = "org.gjt.mm.mysql.Driver";
          Class.forName(myDriver);
          Connection conn = DriverManager.getConnection(mySettings.dbConnect, mySettings.dbUser, mySettings.dbPass);
          PreparedStatement stmt = conn.prepareStatement("select up.userid, up.name, la.languages, up.photo, up.dob, up.edited from userprofile up join languages la on up.languages_id = la.languages_id where up.userid = ?");

          stmt.setString(1, userid);
          ResultSet rs = stmt.executeQuery();
          while (rs.next()) {
              // version 1
              InputStream photois = rs.getBinaryStream("photo");
              int ch;
              String str = new String();
              while ((ch = photois.read()) != -1) {
                  // here the exception occures when i InputStream.read().
                  // both Exception.getMessage() and Exception.getCause()
                  // of the caught exception yield null
                  str += (char)ch;
              }
              byte[] bdata=str.getBytes();
              byte[] img64 = Base64.encode(bdata);
              String photo64 = new String(img64);

              // version 2
              Blob b = rs.getBlob("photo");
              byte[] ba = b.getBytes(1, b.length()); 
              // b.length() throws exception, no message, no cause
              byte[] img64 = Base64.encode(ba);
              String photo64 = new String(img64);

              // version 3
              InputStream photois = rs.getBinaryStream("photo");
              byte[] buf = IOUtils.toByteArray(photois); 
              // this throws an exception, message and cause both null as above 
              String photo64 = DatatypeConverter.printBase64Binary(buf);

          }
          conn.close();
    }
    catch (Exception e) {
          System.err.println("Got an exception! (reading userprofile from db)");
          System.err.println(e.getMessage());
          System.err.println(e.getCause());
    }

in all cases the console gives me this: 在所有情况下,控制台都会为我提供以下信息:
系统错误

The Exception with null in getMessage() and getCause() is the NullPointerException. getMessage()和getCause()中具有null的异常是NullPointerException。

The JavaDoc for ResultSet#getBinaryStream() states that it returns null for the column containing SQL NULL. ResultSet#getBinaryStream()的JavaDoc声明它为包含SQL NULL的列返回null。 Even though the JavaDoc for the ResultSet#getBlob() omits to mention the same, it looks to me that the test rows do not contain any data in the blob column, ie the blob is NULL in database. 即使ResultSet#getBlob()的JavaDoc省略了相同的说明,但在我看来,测试行在blob列中不包含任何数据,即blob在数据库中为NULL。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM