根据图片路径,把图片转为byte数组

/**
     * 根据图片路径,把图片转为byte数组
     * @param Path  图片路径
     * @return      byte[]
     */
    public byte[] image2Bytes(String imgSrc)  
    {  
        FileInputStream fin;
        byte[] bytes = null;
		try {
			fin = new FileInputStream(new File(imgSrc));
			bytes  = new byte[fin.available()];  
	        //将文件内容写入字节数组
	        fin.read(bytes);  
	        fin.close();  
		} catch (Exception e) {
			e.printStackTrace();
		}  
        
        return bytes;  
    }  

你可能感兴趣的:(java)