init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,148 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Windows.Forms;
|
||||
using Lskj.PubUtils.Upload;
|
||||
|
||||
namespace Lskj.PubUtils
|
||||
{
|
||||
public static class UploadFile
|
||||
{
|
||||
// <summary>
|
||||
/// 将本地文件上传到指定的服务器(HttpWebRequest方法)
|
||||
/// </summary>
|
||||
/// <param name="address">文件上传到的服务器</param>
|
||||
/// <param name="fileNamePath">要上传的本地文件(全路径)</param>
|
||||
/// <param name="saveName">文件上传后的名称</param>
|
||||
/// <param name="progressBar">上传进度条</param>
|
||||
/// <returns>成功返回1,失败返回0</returns>
|
||||
public static int Upload_Request(string address, string fileNamePath, string saveName, ProgressBar progressBar)
|
||||
{
|
||||
int returnValue = 0;
|
||||
|
||||
// 要上传的文件
|
||||
FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
|
||||
BinaryReader r = new BinaryReader(fs);
|
||||
|
||||
//时间戳
|
||||
string strBoundary = "----------" + DateTime.Now.Ticks.ToString("x");
|
||||
byte[] boundaryBytes = Encoding.ASCII.GetBytes("/r/n--" + strBoundary + "/r/n");
|
||||
|
||||
//请求头部信息
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.Append("--");
|
||||
sb.Append(strBoundary);
|
||||
sb.Append("/r/n");
|
||||
sb.Append("Content-Disposition: form-data; name=''");
|
||||
sb.Append("file");
|
||||
sb.Append("/'; filename=''");
|
||||
sb.Append(saveName);
|
||||
sb.Append("/r/n");
|
||||
sb.Append("Content-Type: ");
|
||||
sb.Append("application/octet-stream");
|
||||
sb.Append("/r/n");
|
||||
sb.Append("/r/n");
|
||||
string strPostHeader = sb.ToString();
|
||||
byte[] postHeaderBytes = Encoding.UTF8.GetBytes(strPostHeader);
|
||||
|
||||
// 根据uri创建HttpWebRequest对象
|
||||
HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(new Uri(address));
|
||||
httpReq.Method = "POST";
|
||||
//httpReq.ContentType="application/octet-stream";
|
||||
//httpReq.ContentLength=fs.Length;
|
||||
|
||||
//对发送的数据不使用缓存
|
||||
httpReq.AllowWriteStreamBuffering = false;
|
||||
|
||||
//设置获得响应的超时时间(300秒)
|
||||
httpReq.Timeout = 300000;
|
||||
httpReq.ContentType = "multipart/form-data; boundary=" + strBoundary;
|
||||
long length = fs.Length + postHeaderBytes.Length + boundaryBytes.Length;
|
||||
long fileLength = fs.Length;
|
||||
httpReq.ContentLength = length;
|
||||
frmUpload upload = new frmUpload();
|
||||
try
|
||||
{
|
||||
upload.Show();
|
||||
progressBar.Maximum = int.MaxValue;
|
||||
progressBar.Minimum = 0;
|
||||
progressBar.Value = 0;
|
||||
|
||||
//每次上传4k
|
||||
int bufferLength = 4096;
|
||||
byte[] buffer = new byte[bufferLength];
|
||||
|
||||
//已上传的字节数
|
||||
long offset = 0;
|
||||
|
||||
//开始上传时间
|
||||
DateTime startTime = DateTime.Now;
|
||||
int size = r.Read(buffer, 0, bufferLength);
|
||||
Stream postStream = httpReq.GetRequestStream();
|
||||
//发送请求头部消息
|
||||
postStream.Write(postHeaderBytes, 0, postHeaderBytes.Length);
|
||||
while (size > 0)
|
||||
{
|
||||
postStream.Write(buffer, 0, size);
|
||||
offset += size;
|
||||
progressBar.Value = (int)(offset * (int.MaxValue / length));
|
||||
TimeSpan span = DateTime.Now - startTime;
|
||||
double second = span.TotalSeconds;
|
||||
upload.eclspeTime = "已用时:" + second.ToString("F2") + "秒";
|
||||
if (second > 0.001)
|
||||
{
|
||||
upload.speed = " 平均速度:" + (offset / 1024 / second).ToString("0.00") + "KB/秒";
|
||||
}
|
||||
else
|
||||
{
|
||||
upload.speed = " 正在连接…";
|
||||
}
|
||||
upload.state = "已上传:" + (offset * 100.0 / length).ToString("F2") + "% "
|
||||
+ (offset / 1048576.0).ToString("F2") + "M/" + (fileLength / 1048576.0).ToString("F2") + "M";
|
||||
upload.setState();
|
||||
Application.DoEvents();
|
||||
size = r.Read(buffer, 0, bufferLength);
|
||||
}
|
||||
//添加尾部的时间戳
|
||||
postStream.Write(boundaryBytes, 0, boundaryBytes.Length);
|
||||
postStream.Close();
|
||||
|
||||
//获取服务器端的响应
|
||||
WebResponse webRespon = httpReq.GetResponse();
|
||||
Stream s = webRespon.GetResponseStream();
|
||||
StreamReader sr = new StreamReader(s);
|
||||
|
||||
//读取服务器端返回的消息
|
||||
String sReturnString = sr.ReadLine();
|
||||
s.Close();
|
||||
sr.Close();
|
||||
if (sReturnString == "Success")
|
||||
{
|
||||
returnValue = 1;
|
||||
}
|
||||
else if (sReturnString == "Error")
|
||||
{
|
||||
returnValue = 0;
|
||||
}
|
||||
|
||||
}
|
||||
catch
|
||||
{
|
||||
returnValue = 0;
|
||||
}
|
||||
finally
|
||||
{
|
||||
fs.Close();
|
||||
r.Close();
|
||||
}
|
||||
|
||||
upload.Close();
|
||||
upload.Dispose();
|
||||
|
||||
return returnValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
namespace Lskj.PubUtils.Upload
|
||||
{
|
||||
partial class frmUpload
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.lblTime = new System.Windows.Forms.Label();
|
||||
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
||||
this.lblSpeed = new System.Windows.Forms.Label();
|
||||
this.lblState = new System.Windows.Forms.Label();
|
||||
this.lblFile = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// lblTime
|
||||
//
|
||||
this.lblTime.AutoSize = true;
|
||||
this.lblTime.Location = new System.Drawing.Point(13, 31);
|
||||
this.lblTime.Name = "lblTime";
|
||||
this.lblTime.Size = new System.Drawing.Size(47, 12);
|
||||
this.lblTime.TabIndex = 0;
|
||||
this.lblTime.Text = "已用时:";
|
||||
//
|
||||
// progressBar1
|
||||
//
|
||||
this.progressBar1.Location = new System.Drawing.Point(13, 98);
|
||||
this.progressBar1.Name = "progressBar1";
|
||||
this.progressBar1.Size = new System.Drawing.Size(346, 23);
|
||||
this.progressBar1.TabIndex = 1;
|
||||
//
|
||||
// lblSpeed
|
||||
//
|
||||
this.lblSpeed.AutoSize = true;
|
||||
this.lblSpeed.Location = new System.Drawing.Point(13, 53);
|
||||
this.lblSpeed.Name = "lblSpeed";
|
||||
this.lblSpeed.Size = new System.Drawing.Size(59, 12);
|
||||
this.lblSpeed.TabIndex = 2;
|
||||
this.lblSpeed.Text = "平均速度:";
|
||||
//
|
||||
// lblState
|
||||
//
|
||||
this.lblState.AutoSize = true;
|
||||
this.lblState.Location = new System.Drawing.Point(13, 74);
|
||||
this.lblState.Name = "lblState";
|
||||
this.lblState.Size = new System.Drawing.Size(47, 12);
|
||||
this.lblState.TabIndex = 3;
|
||||
this.lblState.Text = "已上传:";
|
||||
//
|
||||
// lblFile
|
||||
//
|
||||
this.lblFile.AutoSize = true;
|
||||
this.lblFile.Location = new System.Drawing.Point(13, 10);
|
||||
this.lblFile.Name = "lblFile";
|
||||
this.lblFile.Size = new System.Drawing.Size(35, 12);
|
||||
this.lblFile.TabIndex = 4;
|
||||
this.lblFile.Text = "文件:";
|
||||
//
|
||||
// frmUpload
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(375, 135);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.lblFile);
|
||||
this.Controls.Add(this.lblState);
|
||||
this.Controls.Add(this.lblSpeed);
|
||||
this.Controls.Add(this.progressBar1);
|
||||
this.Controls.Add(this.lblTime);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||||
this.Name = "frmUpload";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "上传进度";
|
||||
this.TopMost = true;
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label lblTime;
|
||||
private System.Windows.Forms.ProgressBar progressBar1;
|
||||
private System.Windows.Forms.Label lblSpeed;
|
||||
private System.Windows.Forms.Label lblState;
|
||||
private System.Windows.Forms.Label lblFile;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubUtils.Upload
|
||||
{
|
||||
public partial class frmUpload : Form
|
||||
{
|
||||
public frmUpload()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public string eclspeTime { get; set; }
|
||||
public string speed { get; set; }
|
||||
public string state { get; set; }
|
||||
|
||||
public void setState()
|
||||
{
|
||||
lblTime.Text = eclspeTime;
|
||||
lblSpeed.Text = speed;
|
||||
lblState.Text = state;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
Reference in New Issue
Block a user