C#编程中如何上传文件?
用C#编程,是C/S模式,请问如何将文件比如word、txt文档上传并在打开时能下载到本地呢?...
用C#编程,是C/S模式,请问如何将文件比如word、txt文档上传并在打开时能下载到本地呢?
展开
展开全部
>>C#上传文件
using System;
using System.Data;
using System.Data.SqlClient;
public class General
{
private string FilePath; //文件路径
//定义一个枚举用来存放文件的信息
public enum File
{
FILE_SIZE , //大小
FILE_POSTNAME, //
FILE_SYSNAME ,
FILE_ORGINNAME,
FILE_PATH
};
//构造函数
public general()
{
//在WEB.CONFIG中设定AppSettings["filepath"],用于存放文件的路径。
FilePath = System.Configuration.ConfigurationSettings.AppSettings["filepath"];
}
public static string[] UploadFile(HtmlInputFile file)
{
string[] arr = new String[5];
//通过系统时间生成文件名,此功能可以封闭掉,不过中文长文件名支持的不好。
string FileName = DateTime.Now.ToString().Replace(" ","").Replace(":","").Replace("-","");
string FileOrginName = file.PostedFile.FileName.Substring(file.PostedFile.FileName.LastIndexOf("\\")+1);
if(file.PostedFile.ContentLength<=0)
return null;
string postFileName;
string path = new general().FilePath+"\\";
try
{
int pos = file.PostedFile.FileName.LastIndexOf(".")+1;
postFileName = file.PostedFile.FileName.Substring(pos,file.PostedFile.FileName.Length-pos);
file.PostedFile.SaveAs(path+FileName+"."+postFileName);
}
catch(Exception exec)
{
throw(exec);
}
double unit = 1024;
double size = Math.Round(file.PostedFile.ContentLength/unit,2);
arr[(int)File.FILE_SIZE] = size.ToString();//文件大小
arr[(int)File.FILE_POSTNAME] = postFileName;//文件类型(文件后缀名)
arr[(int)File.FILE_SYSNAME] = FileName;//文件系统名
arr[(int)File.FILE_ORGINNAME] = FileOrginName;//文件原来的名字
arr[(int)File.FILE_PATH]=path+FileName+"."+postFileName;//文件路径
return arr;
//throw(new Exception(HtmlUtility.HtmlEncode(IDNO.PostedFile.FileName)));
}
}
using System;
using System.Data;
using System.Data.SqlClient;
public class General
{
private string FilePath; //文件路径
//定义一个枚举用来存放文件的信息
public enum File
{
FILE_SIZE , //大小
FILE_POSTNAME, //
FILE_SYSNAME ,
FILE_ORGINNAME,
FILE_PATH
};
//构造函数
public general()
{
//在WEB.CONFIG中设定AppSettings["filepath"],用于存放文件的路径。
FilePath = System.Configuration.ConfigurationSettings.AppSettings["filepath"];
}
public static string[] UploadFile(HtmlInputFile file)
{
string[] arr = new String[5];
//通过系统时间生成文件名,此功能可以封闭掉,不过中文长文件名支持的不好。
string FileName = DateTime.Now.ToString().Replace(" ","").Replace(":","").Replace("-","");
string FileOrginName = file.PostedFile.FileName.Substring(file.PostedFile.FileName.LastIndexOf("\\")+1);
if(file.PostedFile.ContentLength<=0)
return null;
string postFileName;
string path = new general().FilePath+"\\";
try
{
int pos = file.PostedFile.FileName.LastIndexOf(".")+1;
postFileName = file.PostedFile.FileName.Substring(pos,file.PostedFile.FileName.Length-pos);
file.PostedFile.SaveAs(path+FileName+"."+postFileName);
}
catch(Exception exec)
{
throw(exec);
}
double unit = 1024;
double size = Math.Round(file.PostedFile.ContentLength/unit,2);
arr[(int)File.FILE_SIZE] = size.ToString();//文件大小
arr[(int)File.FILE_POSTNAME] = postFileName;//文件类型(文件后缀名)
arr[(int)File.FILE_SYSNAME] = FileName;//文件系统名
arr[(int)File.FILE_ORGINNAME] = FileOrginName;//文件原来的名字
arr[(int)File.FILE_PATH]=path+FileName+"."+postFileName;//文件路径
return arr;
//throw(new Exception(HtmlUtility.HtmlEncode(IDNO.PostedFile.FileName)));
}
}
参考资料: http://www.cnblogs.com/hzuIT/articles/682744.html
展开全部
以前用过C#操作ftp上传和下载.
也应该可以使用网络编程socke吧?感觉不如ftp.
一点思路,给你借鉴.
也应该可以使用网络编程socke吧?感觉不如ftp.
一点思路,给你借鉴.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
保存媒体流即可
湖北新蓝海是一家专注于网络营销 网络推广的领头企业 ,已为武汉健民、华工激光、江西仁和等多家知名企业提供网络营销外包服务。详情请到各大搜索引擎中搜索“湖北新蓝海”
湖北新蓝海是一家专注于网络营销 网络推广的领头企业 ,已为武汉健民、华工激光、江西仁和等多家知名企业提供网络营销外包服务。详情请到各大搜索引擎中搜索“湖北新蓝海”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Save:
APP_FILE dr = (APP_FILE)ojb;
FileStream fs = new FileStream(PATH + dr.FILE_PATH, FileMode.OpenOrCreate, FileAccess.Write);
byte[] bt = (byte[])dr.FILE_BIN;
fs.Write(bt, 0, bt.Length);
fs.Close();
Open:
FileStream fs = null;
string filePath = Path.GetTempPath() + currentRow.FILE_NAME;
try
{
fs = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write);
byte[] bt = (byte[])currentRow.FILE_BIN(这里是文件实体类的一个属性,此时已经装载好文件);
fs.Write(bt, 0, bt.Length);
System.Diagnostics.Process.Start(filePath);
}
catch
{
TssSystemMsg.Text = LanguageHelper.GetResourceText("FileExportFailed");
}
我这个就是C/S的东西,大概思路直接把文件转成byte[] 写到指定地方(存)
取的时候从存的地方byte[]取到,写到系统临时文件夹后再打开、这个如果东西很大的话建议异步去处理。
APP_FILE dr = (APP_FILE)ojb;
FileStream fs = new FileStream(PATH + dr.FILE_PATH, FileMode.OpenOrCreate, FileAccess.Write);
byte[] bt = (byte[])dr.FILE_BIN;
fs.Write(bt, 0, bt.Length);
fs.Close();
Open:
FileStream fs = null;
string filePath = Path.GetTempPath() + currentRow.FILE_NAME;
try
{
fs = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write);
byte[] bt = (byte[])currentRow.FILE_BIN(这里是文件实体类的一个属性,此时已经装载好文件);
fs.Write(bt, 0, bt.Length);
System.Diagnostics.Process.Start(filePath);
}
catch
{
TssSystemMsg.Text = LanguageHelper.GetResourceText("FileExportFailed");
}
我这个就是C/S的东西,大概思路直接把文件转成byte[] 写到指定地方(存)
取的时候从存的地方byte[]取到,写到系统临时文件夹后再打开、这个如果东西很大的话建议异步去处理。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
WEBCLIENT
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询