plupload.Uploader多文件上传
.前台
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CommonUpfile.aspx.cs" Inherits="HraWeb.ETL.CommonUpfile" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title></title>
<script type="text/javascript" src="/Scripts/plupload/js/plupload.full.min.js"></script>
<style>
#container{
margin-left:100px;
}
button{
width: 100px;
height: 50px;
background-color: cornflowerblue;
}
</style>
</head> <body style="font: 13px Verdana; background: #eee; color: #333"> <h1 style="margin-left:50px;">请选择要导入的文件</h1> <p></p> <div id="filelist"></div>
<br /> <div id="container">
<button id="pickfiles" >浏览</button>
<button id="uploadfiles" >上传的文件</button>
</div> <br />
<pre id="console"></pre> <script type="text/javascript">
// Custom example logic
var uploader = new plupload.Uploader({
runtimes: 'html5,flash,silverlight,html4',
unique_names:true,
multipart: true,
multi_selection:true,
chunk_size: '10mb',
browse_button : 'pickfiles', // you can pass an id...
container: document.getElementById('container'), // ... or DOM Element itself
url: '/ETL/CommonUpfile.aspx?_method=upload&callBack=<%=Request["callBack"]%>',
flash_swf_url: '/Scripts/plupload/js/Moxie.swf',
silverlight_xap_url: '/Scripts/plupload/js/Moxie.xap', filters : {
max_file_size : '1000mb'
//,mime_types: [
// {title : "Image files", extensions : "jpg,gif,png"},
// {title : "Zip files", extensions : "zip"}
//]
}, init: {
PostInit: function() {
document.getElementById('filelist').innerHTML = ''; document.getElementById('uploadfiles').onclick = function () {
alert("开始上传");
uploader.start();
return false;
};
}, FilesAdded: function(up, files) {
plupload.each(files, function(file) {
document.getElementById('filelist').innerHTML += '<div id="' + file.id + '">' + file.name + ' (' + plupload.formatSize(file.size) + ') <b></b></div>';
});
}, UploadProgress: function (up, file) { document.getElementById(file.id).getElementsByTagName('b')[].innerHTML = '<span>' + file.percent + "%</span>";
}, Error: function (up, err) { document.getElementById('console').appendChild(document.createTextNode("\nError #" + err.code + ": " + err.message));
},
FileUploaded: function (up, file, res) { //res = JSON.parse(res.response);
//art.dialog.close() //artDialog.open.origin.uploadCallBack(file.id,file.name); }
, UploadComplete(up,files) {
//alert("full");
var fileArr = new Array();
for (var i = ; i < files.length; i++) {
var f = new Object();
f.id = files[i].id;
f.name = files[i].name;
fileArr.push(f);
//alert(files[i].name+"...")
}
var fileObj = JSON.stringify(fileArr);
$.post("CommonUpfile.aspx?_method=NewImportFile", { fileObj: fileObj }, function (data) {
data = JSON.parse(data);
$.messager.alert("导入完成",data.Message);
artDialog.open.origin.dicCallback();
art.dialog.close();
});
}
}
}); uploader.init();
$("#console").hide();
</script>
<form id="form1" runat="server"> </form>
</body> </html> .后台
using Contract.Domain;
using Contract.IService;
using Holworth.BatchingHosting.Interface;
using Holworth.Utility;
using SocketIM;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.ServiceModel;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls; namespace HraWeb.ETL
{
public partial class CommonUpfile : Common.BasePage
{
private Contract.IService.IDaoService _dao; Contract.IService.IDaoService Dao { get { if (_dao == null) { _dao = ctx.GetObject("DaoService") as Contract.IService.IDaoService; } return _dao; } }
protected void Page_Load(object sender, EventArgs e)
{
if (Request["_method"] == "upload")
{
btn_UppLoad();
}
else if (Request["_method"] == "NewImportFile")
{
string fileObj = Request["fileObj"];
string ipaddr = Holworth.Utility.HraUtility.ConfigurationManager.GetConfig("heartbeatservice", "/Config/ETL.config", HraUtility.IgnoreCase.Ignore);
IHeartBeat channel = InvokeContext.CreateWCFServiceByURL<IHeartBeat>(ipaddr, "ws2007HttpBinding", null);
ICommunicationObject communicationObject =
(ICommunicationObject)channel; var dic = Newtonsoft.Json.JsonConvert.DeserializeObject<dynamic>(fileObj);
Dictionary<string, string> idnames = new Dictionary<string, string>();
foreach (var item in dic)
{
var id = item.id.ToString().Replace("{", "").Replace("}", "");
var name = item.name.ToString().Replace("{", "").Replace("}", "");
idnames[id] = name.ToLower(); }
int i = ;
try
{
channel.ClearOldFiles();
string root = Server.MapPath("~/upload");
var mapList = Dao.FindList<EtlDataMap>(new Framework.QueryInfo() { CustomSQL = "select a from EtlDataMap a" }); var mapDict = mapList.ToDictionary(x => x.FileNameStart.ToLower());
string fileName = "";
idnames.AsParallel().ForAll(item =>
{
string ext = Path.GetExtension(item.Value);
string fileId = item.Key;
fileName = Path.Combine(root, fileId + ext); try
{
SendFile(fileName, item.Value, mapDict[item.Value.Split('.')[]].Id);
HttpMessages.Instance().PushMessage("导入" + item.Value + "成功");
}
catch (Exception ex)
{
HttpMessages.Instance().PushMessage("导入" + item.Value + "失败,因为:" + ex.Message);
Holworth.Utility.Logger.Fatal(ex); } });
HttpMessages.Instance().PushMessage("文件传输完毕"); string mapIds = "";
foreach (var item in idnames)
{
mapIds += mapDict[item.Value.Split('.')[]].Id + ",";
}
mapIds = mapIds.TrimEnd(',');
Dictionary<string, string> dic1 = new Dictionary<string, string>();
dic1["DataMap"] = string.Join(",", mapIds.Split(','));
dic1["FormId"] = Guid.NewGuid().ToString();
var s = Newtonsoft.Json.JsonConvert.SerializeObject(dic1);
try
{
channel.LoadEodFile(s, Guid.NewGuid().ToString());
communicationObject.Close();
}
catch (Exception ex)
{
communicationObject.Abort();
} var message = new { Message = "导入成功,未导入的文件请查看文件是否在ETL中有定义!!!" };
Response.Write(Newtonsoft.Json.JsonConvert.SerializeObject(message)); }
catch (Exception ex)
{
var message = new { ErrorCode = "-1", Message = "导入失败,因为" + ex.Message };
Response.Write(Newtonsoft.Json.JsonConvert.SerializeObject(message));
Holworth.Utility.Logger.Fatal(ex); ;
}
finally
{
Response.End();
} } }
public void SendFile(string fileName, string fileNameStart, string mapId)
{ string ipaddr = Holworth.Utility.HraUtility.ConfigurationManager.GetConfig("heartbeatservice", "/Config/ETL.config", HraUtility.IgnoreCase.Ignore);
IHeartBeat channel = InvokeContext.CreateWCFServiceByURL<IHeartBeat>(ipaddr, "ws2007HttpBinding", null);
ICommunicationObject communicationObject =
(ICommunicationObject)channel;
try
{ int maxBufferLength = * * ;
FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
long fileLen = fs.Length; // 文件长度
long totalLen = fileLen; // 未读取部分
int readLen = ; // 已读取部分
byte[] buffer = null; if (fileLen <= maxBufferLength)
{ /* 文件可以一次读取*/
buffer = new byte[fileLen];
readLen = fs.Read(buffer, , (int)fileLen);
channel.Transfer(fileNameStart, buffer);
}
else
{
/* 循环读取文件,并发送 */
while (totalLen != )
{ if (totalLen < maxBufferLength)
{
buffer = new byte[totalLen];
readLen = fs.Read(buffer, , Convert.ToInt32(totalLen));
}
else
{
buffer = new byte[maxBufferLength];
readLen = fs.Read(buffer, , maxBufferLength);
}
channel.Transfer(fileNameStart, buffer);
totalLen -= readLen;
}
}
fs.Flush();
fs.Close();
Dictionary<string, string> dic = new Dictionary<string, string>();
dic["DataMap"] = string.Join(",", mapId.Split(','));
dic["FormId"] = Guid.NewGuid().ToString();
var s = Newtonsoft.Json.JsonConvert.SerializeObject(dic);
//channel.LoadEodFile(s, Guid.NewGuid().ToString());
communicationObject.Close();
}
catch (Exception ex)
{
communicationObject.Abort();
Holworth.Utility.Logger.Fatal(ex);
throw;
}
finally
{
//try
//{
// File.Delete(fileName);
//}
//catch (Exception exx)
//{
// Holworth.Utility.Logger.Fatal(exx);
//}
}
}
protected void btn_UppLoad()
{
int statuscode = ;
string message = string.Empty;
string filepath = string.Empty;
string root = Server.MapPath("~/upload");
List<string> oldFiles = Net.GetFiles(root);
//foreach (var item in oldFiles)
//{
// if (File.Exists(item))
// {
// File.Delete(item);
// }
//}
// string ipaddr = Holworth.Utility.HraUtility.ConfigurationManager.GetConfig("heartbeatservice", "/Config/ETL.config", HraUtility.IgnoreCase.Ignore);
// IHeartBeat channel = InvokeContext.CreateWCFServiceByURL<IHeartBeat>(ipaddr, "ws2007HttpBinding", null);
// ICommunicationObject communicationObject =
//(ICommunicationObject)channel;
try
{
//channel.InitDataNoInit();
//communicationObject.Close();
if (Request.Files != null && Request.Files.Count > )
{
if (Request.Files.Count > )
{
try
{
string resourceDirectoryName = "upload";
string path = Server.MapPath("~/" + resourceDirectoryName);
if (!Directory.Exists(path))
Directory.CreateDirectory(path); int chunk = Request.Params["chunk"] != null ? int.Parse(Request.Params["chunk"]) : ; //获取当前的块ID,如果不是分块上传的。chunk则为0
string fileName = Request.Params["name"]; //这里写的比较潦草。判断文件名是否为空。
//if (!fileName.Contains("qwert"))
//{ // fileName = $"{Path.GetFileName(fileName).Split('.')[0]}qwert.dat";
//}
string type = Request.Params["type"]; //在前面JS中不是定义了自定义参数multipart_params的值么。其中有个值是type:"misoft",此处就可以获取到这个值了。获取到的type="misoft"; string ext = Path.GetExtension(fileName);
//fileName = string.Format("{0}{1}", Guid.NewGuid().ToString(), ext);
filepath = resourceDirectoryName + "/" + fileName;
fileName = Path.Combine(path, fileName); //对文件流进行存储 需要注意的是 files目录必须存在(此处可以做个判断) 根据上面的chunk来判断是块上传还是普通上传 上传方式不一样 ,导致的保存方式也会不一样
FileStream fs = new FileStream(fileName, chunk == ? FileMode.OpenOrCreate : FileMode.Append);
//write our input stream to a buffer
Byte[] buffer = null;
if (Request.ContentType == "application/octet-stream" && Request.ContentLength > )
{
buffer = new Byte[Request.InputStream.Length];
Request.InputStream.Read(buffer, , buffer.Length);
}
else if (Request.ContentType.Contains("multipart/form-data") && Request.Files.Count > && Request.Files[].ContentLength > )
{
buffer = new Byte[Request.Files[].InputStream.Length];
Request.Files[].InputStream.Read(buffer, , buffer.Length);
} //write the buffer to a file.
if (buffer != null)
fs.Write(buffer, , buffer.Length);
fs.Close(); statuscode = ;
message = "上传成功"; }
catch (Exception ex)
{
statuscode = -;
message = "保存时发生错误,请确保文件有效且格式正确"; Holworth.Utility.Logger.Fatal(ex.Message);
}
}
else
{
statuscode = -;
message = "上传失败,未接收到资源文件";
} string msg = "{\"statusCode\":\"" + statuscode + "\",\"message\":\"" + message + "\",\"filePath\":\"" + filepath + "\"}";
//Response.Write(msg); }
}
catch (Exception ex)
{ Holworth.Utility.Logger.Fatal(ex);
// communicationObject.Abort();
}
finally
{
//Response.End();
} }
IEtlExcelService svc
{
get
{
return (IEtlExcelService)ctx.GetObject("EtlExcelService");
}
} }
}
plupload.Uploader多文件上传的更多相关文章
- plupload+struts2实现文件上传下载
<%@ page language="java" import="java.util.*" pageEncoding="utf-8" ...
- 使用plupload实现多文件上传,自定义参数
下载地址:点击打开链接 1.在开发中可能需要用户附件上传的功能,实现批量上传功能其实就将多个上传任务放到一个集合中,分别上传. 2,使用plupload js插件可以很轻松的实现带参数的多文件上传 3 ...
- asp.net大文件上传与上传文件进度条问题
利用Plupload解决大容量文件上传问题, 带进度条和背景遮罩层 关于Plupload结合上传插件jquery.plupload.queue的使用 这是群里面一位朋友给的资料. 下面是自己搜索到的一 ...
- 实现Magento多文件上传代码功能开发
在Magento中上传单个文件很简单,可以直接在继承的Mage_Adminhtml_Block_Widget_Form类中直接添加如下组件Field: 对于图片: $fieldset->a ...
- 文件上传插件 -- plupload
refresh:重新实例化uploader removeFile(id):从file中移除某个文件 splice(start,length):从队列中start开始删除length个文件, 返回被删除 ...
- Plupload文件上传组件使用API
Plupload有以下功能和特点: 1.拥有多种上传方式:HTML5.flash.silverlight以及传统的<input type=”file” />.Plupload会自动侦测当前 ...
- plupload文件上传插件
一 资源文档 二 基本使用 三 可能遇到的问题 一 资源文档 Git仓库地址:https://github.com/moxiecode/plupload 一个中文速查:http://www.cnblo ...
- angularjs结合plupload实现文件上传
转载注明:(罗志强的博客) angularjs的指令directive非常好使,可以很方便的结合各种插件,实现很强大的功能. 今天用到了plupload,就拿它举例吧. 正常的plupload用法应该 ...
- web 文件上传组件 Plupload
Plupload官网:点击打开链接 建议下载最新版本号,低版本号会出现浏览器兼容问题. 近期公司有个项目须要在web端使用多文件上传功能.刚開始准备使用HTML5来做.但是IE9下面是都不支持的, ...
随机推荐
- Flutter main future mirotask 的执行顺序
下面这段代码的输出是什么? import 'dart:async'; main() { print('main #1 of 2'); scheduleMicrotask(() => print( ...
- linux case ${variable} in
脚本实现划分考试等级层次;
- CUDA C Programming Guide 在线教程学习笔记 Part 7
▶ 可缓存只读操作(Read-Only Data Cache Load Function),定义在 sm_32_intrinsics.hpp 中.从地址 adress 读取类型为 T 的函数返回,T ...
- bootstrapValidator针对设置赋值进行验证
bootstrapValidator在提交的时候可以进行验证,但是对于点击输入框进行赋值的时候验证失效. 解决方法: 然后在设置change方法方可解决.
- AS3 os与version 区别 使用Capabilities类获取Flash Player的信息
AS3中flash.system.Capabilities类提供诸多静态的只读属性来描述应用程序当前所运行在的系统和运行时信息,如Flash Player,Adobe AIR,Flash Lite.通 ...
- 实现Action的三种方式
实现Action的三种方式: 1.普通类 一般采用此种方法 2.实现Action接口 3.继承ActionSupport类
- django中怎么使用mysql数据库的事务
Mysql数据库事务: 在进行后端业务开始操作修改数据库时,可能会涉及到多张表的数据修改,对这些数据的修改应该是一个整体事务,即要么一起成功,要么一起失败. Django中对于数据库的事务,默认每执行 ...
- java.lang.NullPointerException - 如何处理空指针异常
当应用程序试图null在需要对象的情况下使用时抛出.这些包括: 调用null对象的实例方法. 访问或修改null对象的字段. 把长度null当作一个数组. 像访问或修改null阵列一样访问或修改插槽. ...
- Structs配置文件 zg项目介绍
Structs配置文件 1.以系统代码为名称 例:
- spring boot 配置 freemarker
1.springboot 中自带的页面渲染工具为thymeleaf 还有freemarker 这两种模板引擎 简单比较下两者不同, 1.1freemaker 优点 freemarker 不足:thym ...