前几天帮人做个社交网站,还是老套的控件方式,不过学习了ajax和一般处理程序ashx后,也用在了里面一些,今天回来继续写博客。继续上次总结下基础知识,学的内容多,总结的可能比较杂乱,分条总结为平时能自己看看吧。1,文件流FileStream比File类速度快,不占用内存。操作大文件要用文件流。2,文...
分类:
Web程序 时间:
2015-01-09 23:35:07
阅读次数:
222
读操作 //1.创建文件流 FileStream fsRead =new FileStream("1.txt",FileMode.Open); //2.创建缓冲区,正常情况下,是不会直接等于文件大小的。这里只有读,所以就这么干了。 byte[] bytes =new byte[fsRead.Leng...
分类:
Web程序 时间:
2015-01-06 08:31:10
阅读次数:
198
利用FileStream实现多媒体文件复制的主要思路在于利用两个FileStream对象,一个读取字节,另一个对象写入字节既可。 涉及知识点: 1.通常我们操作的File类,FileStream,StreamWriter,StreamReader都是在System.IO命名空间下的。 2....
分类:
其他好文 时间:
2015-01-01 00:10:49
阅读次数:
192
使用FileStream 好处 对内存影响小读取数据FileStrame fsRead = new FileStrame(@"C:\a.txt", FileMode.OpenOrCreate, FileAccess.Read);byte[] buffer = new byte[1024*1024*....
最近做东西遇到了下载相关的问题。在这里总结一下自己处理的方法。1.以字节流的形式向页面输出数据以下载Excel为例子。 string path=Server.MapPath("文件路径");//这里的文件路径是相对路径 FileStream fs = new...
分类:
Web程序 时间:
2014-12-24 17:52:36
阅读次数:
163
public class FTP { static FtpWebRequest reqFTP; static WebResponse response; static StreamReader ftpStream; static Stream strm; static FileStream fs; ...
一.NET Framework 类库的System.IO 命名空间System.IO 命名空间包含允许读写文件和数据流的类型以及提供基本文件和目录支持的类型。二 C#文件读写之FileStream详解 1.(FileStreamfs1=File.Open("c://test.txt",FileMo....
File.Exist(string path)//文件读写FileStream fs=new FileStream(filename, FileMode.Create);BinaryWriter bw=new BinaryWriter(fs);bw.Write("OK");bw.Flush();.....
FileStream可以操作任何文件。 FileStream可以操作大型文件。 StreamReader和StreamWriter只针对文本文件操作,文本文件操作起来比较简单。 1 private void button1_Click(object sender, Event...
分类:
其他好文 时间:
2014-12-09 21:12:09
阅读次数:
423
百度网盘(npoi.dll): http://pan.baidu.com/s/14eJRw 1 //先创建一个文件流,指向磁盘上的某个Excel文件 2 using (FileStream fsRead = File.OpenRead("ReadExcel.xls"))...
分类:
其他好文 时间:
2014-12-09 12:08:49
阅读次数:
209