zoukankan      html  css  js  c++  java
  • Clob和Blob转换byte数组

    一.Clob转化成byte数组

      public static byte[] clobToBytes(Clob clob) {  
            BufferedInputStream is = null;  
            try {  
                is = new BufferedInputStream(clob.getAsciiStream());  
                byte[] bytes = new byte[(int) clob.length()];  
                int len = bytes.length;  
                int offset = 0;  
                int read = 0;  
                while (offset < len && (read = is.read(bytes, offset, len - offset)) >= 0) {  
                    offset += read;  
                }  
                return bytes;  
            } catch (Exception e) {
                try {
                    is.close();
                } catch (IOException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }  
                is = null; 
                return null;  
            } finally {  
                try {  
                    is.close();  
                    is = null;  
                } catch (IOException e) {  
                    return null;  
                }  
            }  
        }

    二. Blob转换byte数组

      public static byte[] blobToBytes(Blob blob) {  
            BufferedInputStream is = null;  
            try {  
                is = new BufferedInputStream(blob.getBinaryStream());  
                byte[] bytes = new byte[(int) blob.length()];  
                int len = bytes.length;  
                int offset = 0;  
                int read = 0;  
                while (offset < len && (read = is.read(bytes, offset, len - offset)) >= 0) {  
                    offset += read;  
                }  
                return bytes;  
            } catch (Exception e) {
                try {
                    is.close();
                } catch (IOException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }  
                is = null; 
                return null;  
            } finally {  
                try {  
                    is.close();  
                    is = null;  
                } catch (IOException e) {  
                    return null;  
                }  
            }  
        }
  • 相关阅读:
    windows 物理内存获取
    windbg-.process切换进程(内核)
    cnetos 6.7彻底解决vmware NAT网络问题
    优秀的博客链接地址
    使用Spring MVC统一异常处理实战
    active mq 配置
    socket demo程序
    flume 中的 hdfs sink round 和roll
    软链接与硬链接
    flume A simple example
  • 原文地址:https://www.cnblogs.com/zdf159/p/9993204.html
Copyright © 2011-2022 走看看