代码搜索:FileStream
找到约 559 项符合「FileStream」的源代码
代码结果 559
www.eeworm.com/read/106088/15647951
h ioapi.h
/* ioapi.h -- IO base function header for compress/uncompress .zip
files using zlib + zip or unzip API
Version 0.20, September 01th, 2002
Copyright (C) 1998-2002 Gilles Vollant
*/
www.eeworm.com/read/104008/15714321
cs mdiinterfaces.cs
using System;
using System.IO;
namespace MDICSharp
{
///
/// Summary description for MDIInterfaces.
///
public interface IMDIDocument
{
void AttachView(IMDIView
www.eeworm.com/read/103038/15748432
txt 读写xml文件2.txt
//读节点1----------------------------------------------------------------
// XmlTextReader tr=new XmlTextReader("books.xml");
// while(tr.Read())
// {
// if(tr.NodeType==XmlNodeType.Text)
/
www.eeworm.com/read/103038/15748435
txt 读写xml文件.txt
using System;
using System.Data;
using System.IO;
using System.Xml;
DataSet myDataSet=new DataSet();
FileStream fsReadXml=new FileStream(myFilename,FileMode.Open);
XmlTextReader myXmlReade
www.eeworm.com/read/103038/15748439
txt 验证xml文件.txt
using System.Xml.Schema;
FileStream fs=new FileStream("books.xml",FileMode.Open);
XmlTextReader tr=new XmlTextReader(fs);
XmlValidatingReader trv=new XmlValidatingReader(tr);
trv.Validati
www.eeworm.com/read/102854/15755998
aspx filestreamreadtext.aspx
public void Page_Load(Object src,EventArgs e)
{
FileStream fs = new FileStream(Server.MapPat
www.eeworm.com/read/102854/15756001
aspx readtext.aspx
public void Page_Load(Object src,EventArgs e)
{
FileStream fs = new FileStream(Server.MapPat
www.eeworm.com/read/102854/15756006
aspx filestreamcreatetext.aspx
public void Page_Load(Object src,EventArgs e)
{
FileStream fs = new FileStream(Server.MapPat
www.eeworm.com/read/101790/15814351
htm subject_64176.htm
序号:64176 发表者:☆海宁☆ 发表日期:2003-12-09 11:59:26
主题:读取文件中的汉字是乱码
内容:FileStream aFile=new FileStream(@"c:\hbh.txt",FileMode.Open);StreamReader sr=new StreamReader(aFile);//读数据