zoukankan      html  css  js  c++  java
  • Java File 与 Bytes相互转换

    public static byte[] fileToBytes(String filePath) {
            byte[] buffer = null;
            File file = new File(filePath);
            
            FileInputStream fis = null;
            ByteArrayOutputStream bos = null;
    
            try {
                fis = new FileInputStream(file);
                bos = new ByteArrayOutputStream();
    
                byte[] b = new byte[1024];
    
                int n;
    
                while ((n = fis.read(b)) != -1) {
                    bos.write(b, 0, n);
                }
                
                buffer = bos.toByteArray();
            } catch (FileNotFoundException ex) {
                Logger.getLogger(JmsReceiver.class.getName()).log(Level.SEVERE, null, ex);
            } catch (IOException ex) {
                Logger.getLogger(JmsReceiver.class.getName()).log(Level.SEVERE, null, ex);
            } finally {
                try {
                    if (null != bos) {
                        bos.close();
                    }
                } catch (IOException ex) {
                    Logger.getLogger(JmsReceiver.class.getName()).log(Level.SEVERE, null, ex);
                } finally{
                    try {
                        if(null!=fis){
                            fis.close();
                        }
                    } catch (IOException ex) {
                        Logger.getLogger(JmsReceiver.class.getName()).log(Level.SEVERE, null, ex);
                    }
                }
            }
            
            return buffer;
        }
    public static void bytesToFile(byte[] buffer, final String filePath){
    
            File file = new File(filePath);
    
            OutputStream output = null;
            BufferedOutputStream bufferedOutput = null;
    
            try {
                output = new FileOutputStream(file);
    
                bufferedOutput = new BufferedOutputStream(output);
    
                bufferedOutput.write(buffer);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } finally{
                if(null!=bufferedOutput){
                    try {
                        bufferedOutput.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
    
                if(null != output){
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
    
    
        }
  • 相关阅读:
    使用 requests 维持会话
    使用 requests 发送 POST 请求
    使用 requests 发送 GET 请求
    requests 安装
    使用 urllib 分析 Robots 协议
    使用 urllib 解析 URL 链接
    使用 urllib 处理 HTTP 异常
    使用 urllib 处理 Cookies 信息
    使用 urllib 设置代理服务
    按单生产程序发布
  • 原文地址:https://www.cnblogs.com/yshyee/p/6609285.html
Copyright © 2011-2022 走看看