Java中如何把图片转换成二进制流
使用java的IO流对图片进行二进制读取操作即可
示例为:读取图片为二进制流,并写入到其他图片中
static void testCopyImage(){ File source=new File("E:\\share\\Wallpaper\\Bliss.jpg"); File desk=new File("d:\\images"); if(!desk.exists()){ desk.mkdir(); } try { FileInputStream inputStream=new FileInputStream(source); FileOutputStream outputStream=new FileOutputStream(new File("d:/images/Bliss.jpg")); int ch=inputStream.read(); while(ch!=-1){ outputStream.write(ch); ch=inputStream.read(); } inputStream.close(); outputStream.close(); System.out.println("图片复制成功!"); } catch (FileNotFoundException e) { System.out.println("文件不存在:"+e.getMessage()); } catch (IOException e) { System.out.println("文件读取错误:"+e.getMessage()); } }
java web项目中图片上传浏览的路径
String fileName = (String) request.getAttribute("fileBrowser");
if (fileName != null && fileName.trim().length() > 0) {
File file = new File(fileName);
file.getPath();
}
在Servlet中,或者Actoin中这样子获取。
页面传递过去的只是一个字符串,需要自己另外做处理。
还有一种方法就是你使用Ajax进行提交。
----
<form name="form1" action='/LVMH/management/refresh_Data_Chinese'> <input type="file" name="fileBrowser" size="50" onchange="readFile(this)" /> <input type='submit' id="box_btn" >更新</input></form>