使用input file不需上传服务器选择后实现预览_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 使用input file不需上传服务器选择后实现预览

使用input file不需上传服务器选择后实现预览

 2017/3/16 5:34:00  zsjdxc251  程序员俱乐部  我要评论(0)
  • 摘要:$("input:file").change(function(){varthisObj=this;varreader=newFileReader();reader.onload=function(e){vardata=e.target.result;//加载图片获取图片真实宽度和高度varimage=newImage();image.onload=function(){varwidth=image.width;varheight=image.height;$("img
  • 标签:file 实现 使用 上传 服务器 服务
class="js">$("input:file").change(function(){
	  var thisObj = this;
	  var reader = new FileReader();
	  reader.onload = function (e) {
		  var data = e.target.result;
		  //加载图片获取图片真实宽度和高度
		  var image = new Image();
		  image.onload=function(){
		      var width = image.width;
		      var height = image.height;
			  $("img.showImageImg").attr("src",reader.result);
		  };
	      image.src= data;
	 };
	 reader.readAsDataURL(this.files[0]);
  });

? ?monospace;">reader.result 得到BASE64节码

?可以通过传输BASE64实现文件上传服务器

?

/**
	 * 
	 * @param base64Str 
	 * @throws IOException
	 */
	public static void uploadBASE64(String base64Str) throws IOException{
		BASE64Decoder d = new BASE64Decoder(); 
		//data:image/gif;base64,R0lGODlhg.....
		//去除逗号和逗号之前字符串
        byte[] bs = d.decodeBuffer(base64Str);  
        FileOutputStream os = new FileOutputStream("xxxx/x.gif");  
        os.write(bs);  
        os.close();
	}

?

  • 大小: 6.9 KB
  • 大小: 53.2 KB
  • 大小: 44.9 KB
  • 大小: 5 KB
  • 大小: 43 KB
  • 查看图片附件
发表评论
用户名: 匿名