JAVA生成将图片存入数据库(IMAGE类型)的sql语句

public class Image2Hex {
	public static void main(String[] args) {
		try{
			//存放图片的文件夹
			File list = new File("d:/qmx");
			File[] lists = list.listFiles();
			String name;
			//生成的语句存放文件
			PrintWriter pw = new PrintWriter(new FileWriter("d:/update.txt"),true);
			FileInputStream fis = null;
			byte[] b;
			for(File file : lists){
				//张三.jpg
				name=file.getName();
				fis = new FileInputStream(file);
				b = new byte[fis.available()];
				fis.read(b);
		        pw.println("update sys_userinfo set sign_image =0x" + byte2HexStr(b) + " where realName=\'" + name.substring(0,name.length() - 4) + "\'");      
			}
			pw.flush();
			pw.close();   
		}catch(Exception e){
			e.printStackTrace();
		}
	}
	/**
	 * 
	 * 描述:byte转字符串
	 */
	public static String byte2HexStr(byte[] b) {   
		StringBuffer hs = new StringBuffer();   
		String stmp="";   
		for (int n=0;n< b.length;n++) {   
			stmp=(Integer.toHexString(b[n] & 0XFF));
			hs.append((stmp.length() == 1 ? "0" : "") + stmp);
		}   
		return hs.toString().toUpperCase();   
	}   
}

 现在的项目需要存放用户公司的员工的签名图片,美工做出来几百张图片需要存放到数据库里,于是就写了这么一个将图片读成十六进制并拼写update语句存放到文本文档中的方法,效果还是不错的。。。。。→_

PS:一般不建议将图片或文件存入数据库。+_+

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值