1、文件上传
private string uploadFile(string url, string[] files, NameValueCollection data,Encoding encoding)
{
string boundary = "---------------------------" + DateTime.Now.Ticks.ToString("x");
byte[] boundarybytes = Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");
byte[] endbytes = Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.ContentType = "multipart/form-data; boundary=" + boundary;
request.Method = "POST";
request.KeepAlive = true;
request.Credentials = CredentialCache.DefaultCredentials;
using (Stream stream = request.GetRequestStream())
{
string formdataTemplate = "Content-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}";
if (data != null)
{
foreach (string key in data.Keys)
{
stream.Write(boundarybytes, 0, boundarybytes.Length);
string formitem = string.Format(formdataTemplate, key, data[key]);
byte[] formitembytes = encoding.GetBytes(formitem);
stream.Write(formitembytes, 0, formitembytes.Length);
}
}
string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\nContent-Type: application/octet-stream\r\n\r\n";
byte[] buffer = new byte[4096];
int bytesRead = 0;
for (int i = 0; i < files.Length; i++)
{
stream.Write(boundarybytes, 0, boundarybytes.Length);
string header = string.Format(headerTemplate, "file" + i, Path.GetFileName(files[i]));
byte[] headerbytes = encoding.GetBytes(header);
stream.Write(headerbytes, 0, headerbytes.Length);
using (FileStream fileStream = new FileStream(files[i], FileMode.Open, FileAccess.Read))
{
while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
{
stream.Write(buffer, 0, bytesRead);
}
}
}
stream.Write(endbytes, 0, endbytes.Length);
}
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader stream = new StreamReader(response.GetResponseStream()))
{
return stream.ReadToEnd();
}
}
private void Upload(string path){
string url = ( GetConnstr() + "CrPpt/Upload");
NameValueCollection data = new NameValueCollection();
data.Set("Id","1111111");
string[] files = new string[] { path };
Encoding encoding = Encoding.UTF8;
uploadFile(url, files,data,encoding );
}
2、文件下载
private void test(List<Dictionary<string, string>> pptlist)
{
for( int i=0;i< pptlist.Count;i++)
{
Dictionary<string, string> ppt = pptlist[i];
Button btn = new Button();
btn.Text = ("ppt" + (i + 1));
btn.Name = ppt["Fileurl"];
btn.Click += new EventHandler(downloadFile);
this.groupBox1.Controls.Add(btn);
}
}
private void downloadFile(object sender, EventArgs e)
{
if (sender is Button)
{
Button button = sender as Button;
string url = "https://pic.vjshi.com/2019-05-23/35a1a395f621988f1c5971a5d33ff0a3/00004.jpg?x-oss-process=style/watermark";
string remoteUri = System.IO.Path.GetDirectoryName(url);
string fileName = System.IO.Path.GetFileName(url);
string myStringWebResource = null;
WebClient myWebClient = new WebClient();
myStringWebResource = url;
FolderBrowserDialog dialog = new FolderBrowserDialog();
dialog.Description = "请选择下载路径";
string foldPath = "";
if (dialog.ShowDialog() == DialogResult.OK)
{
foldPath = dialog.SelectedPath;
}
if (string.IsNullOrEmpty(foldPath))
{
MessageBox.Show("请选择下载路径");
return;
}
string fullfile = foldPath + "\\" + fileName;
myWebClient.DownloadFile(myStringWebResource, fullfile);
if (File.Exists(fullfile))
{
MessageBox.Show("下载成功");
}
else
{
MessageBox.Show("下载失败");
}
}
}