JFinal使用ajaxfileupload实现图片上传及预览

本文实例为大家分享了JFinal使用ajaxfileupload实现图片上传预览的具体代码,供大家参考,具体内容如下

1.前端jsp页面核心代码

<script type="text/javascript" src="<%=request.getContextPath() %>/js/jquery.min.js"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/media/ajaxupload/ajaxfileupload.js"></script>
<input type="file" class="upload" name="file" id="upfile" onchange="ajaxFileUpload('upfile')"/>
<!--用于预览图片-->
<img src="<c:if test="${banner.img!=null}"><%=request.getContextPath() %>/media/file/${banner.img}</c:if>" style="width:300px;height:100px;" id="imgsrc"/>
<!--存放图片路径,提交页面时传给后台的值-->
<input id='imgurl' type='hidden' name="imgurl" style="height:30px;width:100%" value='${banner.img}'/>
function ajaxFileUpload(fileEid, paramdata){
 if(typeof(paramdata)=='undefined') paramdata = {};
 var $file=$('#'+fileEid).val();
 if($file=='') {alert("请先选择对应的上传文件,谢谢"); return;}

 $.ajaxFileUpload({
  url:'<%=request.getContextPath()%>/banner/uploadpic',
  secureuri:false,
  fileElementId:fileEid,
  dataType: 'text',
  data:paramdata,
  success: function (result){
   var result = result.substring(result.indexOf("{"),result.indexOf("}")+1);
   result = eval("("+result+")");

   if(result.t==1){
    $("#imgsrc").attr("src","<%=request.getContextPath() %>/media/file/"+result.msg);
    $("#imgurl").val(result.msg);
   }else{
    alert("上传失败");
   }
  }
 });
}

2.后台核心代码

public void uploadpic(){
 UploadFile upfile = getFile();//JFinal规定getFile()必须最先执行
 File file = upfile.getFile();
 String filename = file.getName();
 String delfilename = filename;
 if(filename!=null && !filename.equals("")){
  filename = new SimpleDateFormat("yyyyMMddkkmmss").format(new Date())+filename;
  /**
   * 新保存的位置
   */
  String path = getRequest().getSession().getServletContext()
    .getRealPath("/");
  String newPath = "/media/file/";//自定义目录 用于存放图片
  /**
   * 没有则新建目录
   */
  File floder = new File(path + newPath);
  if (!floder.exists()) {
   floder.mkdirs();
  }
  /**
   * 保存新文件
   */
  FileInputStream fis = null;
  FileOutputStream fos = null;
  try{
   File savePath = new File(path + newPath + filename);
   if(!savePath.isDirectory()) savePath.createNewFile();
   fis = new FileInputStream(file);
   fos = new FileOutputStream(savePath);
   byte[] bt = new byte[300];
   while (fis.read(bt, 0, 300) != -1) {
    fos.write(bt, 0, 300);
   }
  }catch(Exception e){
   e.printStackTrace();
  }finally{
   try{
    if(null!=fis) fis.close();
    if(null!=fos) fos.close();
   }catch(Exception e){
    e.printStackTrace();
   }
  }

  /**
   * 删除原图片,JFinal默认上传文件路径为 /upload(自动创建)
   */
  File delFile = new File(path+"/upload/"+delfilename);
  if(delFile.exists()){
   delFile.delete();
  }
  setAttr("msg",filename);
  setAttr("t",1);
 }else{
  setAttr("t",0);
 }
 renderJson();
}

附:ajaxfileupload.js代码

jQuery.extend({
 createUploadIframe: function(id, uri) {
  //create frame
  var frameId = 'jUploadFrame' + id;
  var iframeHtml = '<iframe id="' + frameId + '" name="' + frameId + '" style="position:absolute; top:-9999px; left:-9999px"';
  if(window.ActiveXObject) {
   if(typeof uri== 'boolean'){
    iframeHtml += ' src="' + 'javascript:false' + '"';
   } else if(typeof uri== 'string'){
    iframeHtml += ' src="' + uri + '"';
   }
  }
  iframeHtml += ' />';
  jQuery(iframeHtml).appendTo(document.body);
  return jQuery('#' + frameId).get(0);
 },
 createUploadForm: function(id, fileElementId, data) {
  //create form
  var formId = 'jUploadForm' + id;
  var fileId = 'jUploadFile' + id;
  var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
  if(data) {
   for(var i in data) {
    jQuery('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form);
   }
  }
  var oldElement = jQuery('#' + fileElementId);
  var newElement = jQuery(oldElement).clone();
  jQuery(oldElement).attr('id', fileId);
  jQuery(oldElement).before(newElement);
  jQuery(oldElement).appendTo(form);

  //set attributes
  jQuery(form).css('position', 'absolute');
  jQuery(form).css('top', '-1200px');
  jQuery(form).css('left', '-1200px');
  jQuery(form).appendTo('body');
  return form;
 },

 ajaxFileUpload: function(s) {
  // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
  s = jQuery.extend({}, jQuery.ajaxSettings, s);
  var id = new Date().getTime()
  var form = jQuery.createUploadForm(id, s.fileElementId, (typeof(s.data)=='undefined'?false:s.data));
  var io = jQuery.createUploadIframe(id, s.secureuri);
  var frameId = 'jUploadFrame' + id;
  var formId = 'jUploadForm' + id;
  // Watch for a new set of requests
  if ( s.global && ! jQuery.active++ )
  {
   jQuery.event.trigger( "ajaxStart" );
  }
  var requestDone = false;
  // Create the request object
  var xml = {}
  if ( s.global )
   jQuery.event.trigger("ajaxSend", [xml, s]);
  // Wait for a response to come back
  var uploadCallback = function(isTimeout)
  {
   var io = document.getElementById(frameId);
   try {
    if(io.contentWindow) {
     xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null;
     xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
    } else if(io.contentDocument) {
     xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null;
     xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document;
    }
   } catch(e) {
    jQuery.handleError(s, xml, null, e);
   }
   if ( xml || isTimeout == "timeout") {
    requestDone = true;
    var status;
    try {
     status = isTimeout != "timeout" ? "success" : "error";
     // Make sure that the request was successful or notmodified
     if ( status != "error" ) {
      // process the data (runs the xml through httpData regardless of callback)
      var data = jQuery.uploadHttpData( xml, s.dataType );
      // If a local callback was specified, fire it and pass it the data
      if ( s.success )
       s.success( data, status );

      // Fire the global callback
      if( s.global )
       jQuery.event.trigger( "ajaxSuccess", [xml, s] );
     } else
      jQuery.handleError(s, xml, status);
    } catch(e) {
     status = "error";
     jQuery.handleError(s, xml, status, e);
    }

    // The request was completed
    if( s.global )
     jQuery.event.trigger( "ajaxComplete", [xml, s] );

    // Handle the global AJAX counter
    if ( s.global && ! --jQuery.active )
     jQuery.event.trigger( "ajaxStop" );

    // Process result
    if ( s.complete )
     s.complete(xml, status);

    jQuery(io).unbind()

    setTimeout(function() {
          try {
           jQuery(io).remove();
           jQuery(form).remove();
          } catch(e) {
           jQuery.handleError(s, xml, null, e);
          }
         }, 100)
    xml = null
   }
  }
  // Timeout checker
  if ( s.timeout > 0 )
  {
   setTimeout(function(){
    // Check to see if the request is still happening
    if( !requestDone ) uploadCallback( "timeout" );
   }, s.timeout);
  }
  try
  {

   var form = jQuery('#' + formId);
   jQuery(form).attr('action', s.url);
   jQuery(form).attr('method', 'POST');
   jQuery(form).attr('target', frameId);
   if(form.encoding) {
    jQuery(form).attr('encoding', 'multipart/form-data');
   } else {
    jQuery(form).attr('enctype', 'multipart/form-data');
   }
   jQuery(form).submit();
  } catch(e) {
   jQuery.handleError(s, xml, null, e);
  }

  jQuery('#' + frameId).load(uploadCallback);
  return {abort: function () {}};
 },

 uploadHttpData: function( r, type ) {
  var data = !type;
  data = type == "xml" || data ? r.responseXML : r.responseText;
  // If the type is "script", eval it in global context
  if ( type == "script" )
   jQuery.globalEval( data );
  // Get the JavaScript object, if JSON is used.
  if ( type == "json" )
   eval( "data = " + data );
  // evaluate scripts within html
  if ( type == "html" )
   jQuery("<div>").html(data).evalScripts();
  return data;
 }
})

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • jQuery插件ajaxFileUpload异步上传文件

    ajaxFileUpload.js 很多同名的,因为做出来一个很容易. 我用的是这个:https://github.com/carlcarl/AjaxFileUpload 下载地址在这里:http://xiazai.jb51.net/201610/yuanma/ajaxfileupload(jb51.net).rar AjaxFileUpload.js并不是一个很出名的插件,只是别人写好的放出来供大家用,原理都是创建隐藏的表单和iframe然后用JS去提交,获得返回值. 当初做了个异步上传的功能

  • ThinkPHP结合AjaxFileUploader实现无刷新文件上传的方法

    本文实例讲述了ThinkPHP结合AjaxFileUploader实现无刷新文件上传的方法.分享给大家供大家参考.具体实现方法分析如下: 首先,AjaxFileUploader插件是一个基于jquery的插件,我们可以使用AjaxFileUploader插件来实现文件异步上传功能了,使用这款插件上传文件不要担心兼容性的问题,它的兼容性可以说兼容所有主流浏览器,下面来给大家介绍一个AjaxFileUploader+thinkphp实现文件上传的实例. ThinkPHP框架下用AjaxFileUpl

  • PHP+ajaxfileupload+jcrop插件完美实现头像上传剪裁

    昨天花了点时间整合了一下头像插件 东拼西凑的成果 先来看下效果 1.先使用ajaxfileupload插件做异步上传.这个地方我本来想做个上传进度的效果,但技术有限失败了.上传按钮我还做了一个文件大小的限制,但是由于浏览器兼容性的问题,不完美在IE6--IE9之间还有很多问题需要解决 getFileSize函数是用于判断文件大小的函数 复制代码 代码如下: function getFileSize(fileName) {                var byteSize = 0;     

  • jQuery插件ajaxfileupload.js实现上传文件

    AjaxUpLoad.js的使用实现无刷新文件上传,如图 1.创建页面并编写HTML 上传文档: <div class="uploadFile"> <span id="doc"><input type="text" disabled="disabled" /></span> <input type="hidden" id="hidFileNam

  • js ajaxfileupload.js上传报错的解决方法

    相信大家在工作中经常用到文件上传的操作,因为我是搞前端的,所以这里主要是介绍ajax在前端中的操作.代码我省略的比较多,直接拿js那里的 $.ajaxFileUpload({ url:'www.coding/mobi/file/uploadSingleFile.html',//处理图片脚本 secureuri :false, fileElementId :'image2',//file控件id.就是input type="file" id="image2" data

  • ajaxFileUpload.js插件支持多文件上传的方法

    前提条件: ajaxFileUpload.js插件多文件上传 步骤: 1.修改源码,(源码只支持单个文件的上传): 复制代码 代码如下: //修改前代码------- //var oldElement = jQuery('#' + fileElementId); //var newElement = jQuery(oldElement).clone(); //jQuery(oldElement).attr('id', fileId); //jQuery(oldElement).before(ne

  • jquery之ajaxfileupload异步上传插件(附工程代码)

    点我下载工程代码 由于项目需求,在处理文件上传时需要使用到文件的异步上传.这里使用Jquery Ajax File Uploader这个组件下载地址:http://www.phpletter.com/download_project_version.php?version_id=6 服务器端采用struts2来处理文件上传. 所需环境: jquery.js ajaxfileupload.js struts2所依赖的jar包 及struts2-json-plugin-2.1.8.1.jar 编写文

  • 一个简单的jQuery插件ajaxfileupload.js实现ajax上传文件例子

    jQuery插件AjaxFileUpload可以实现ajax文件上传,该插件使用非常简单,首先了解一下正确使用AjaxFileUpload插件的方法,然后再了解一些常见的错误信息和解决方法. 使用说明 需要使用jQuery库文件 和AjaxFileUpload库文件 使用实例 一,包含文件部分 复制代码 代码如下: <script type="text/javascript" src="jquery.js"></script> <scr

  • 利用ajaxfileupload插件实现文件上传无刷新的具体方法

    做项目的时候遇到了这样一个问题,如果用普通的ASP.NET FileUpload控件实现文件上传,那么页面会刷新,那么页面上用JS拼出的元素就会消失,为了上传文件,又不能刷新页面,ajaxfileupload插件是一个很好的选择(插件下载地址:http://files.jb51.net/file_images/article/201306/js/ajaxfileupload.js) ajaxfileupload是jQuery的一个插件,使用这个插件同时要引用jQuery.js文件 直接上代码吧

  • 使用ajaxfileupload.js实现ajax上传文件php版

    无论是PHP,还是其他的服务端脚本都提供了文件上传功能,实现起来也比较简单.而利用JavaScript来配合,即可实现Ajax方式的文件上传.虽然jQuery本身没有提供这样的简化函数,但有不少插件可以实现.其中,Phpletter.com提供的ajaxfileupload.js是一个轻量的插件,而且编写方式与jQuery提供的全局方法$.post()非常相似,简单易用. 不过,该插件实在太简化了,除了可提供需上传文件的路径外,也就不能传递额外的值到后台服务端.所以,我修改了一下该脚本,增加个一

随机推荐