asp.net c读取写文件操作代码

asp教程.net c读取写文件操作代码

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.io;
using system.xml.schema;
using system.collections.generic;
using system.xml;
namespace xmlaa
{
  public class readxml
  {
  public static void main()
  {
  xmlreadersettings setting = new xmlreadersettings();
  //insert template.
  setting.schemas.add(null,@"....po.xsd");
  //validate.
  setting.validationtype = validationtype.schema;
  //does not handle errors, but displays an error message.
  setting.validationeventhandler += new 
  validationeventhandler(evenhandler);
   
  xmlreader reader = xmlreader.create(@"....vol.xml",setting);
  while (reader.read())
  {
  if (reader.nodetype == xmlnodetype.text)
  {
  console.writeline(reader.value);
  }
  }
  console.readline();
  }

  public static void evenhandler(object sender, validationeventargs e)
  {
  //error message
  console.writeline("the method or operation is not implemented.");
  }
  }
}

// 简单一点的

using (filestream fs = new filestream(file, filemode.open,fileaccess.readwrite))
            {
                xmldocument toxml = new xmldocument();
                toxml.load(fs);
                //do some modification for the xml.
                fs.flush();
                toxml.save(fs);
            }

%>

时间: 2024-10-03 16:09:19

asp.net c读取写文件操作代码的相关文章

Ruby常用文件操作代码实例

  这篇文章主要介绍了Ruby常用文件操作代码实例,如新建文件.输出文件内容.IO操作.输出文件路径.stringio使用等内容,需要的朋友可以参考下 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 6

C++读写文件操作代码

C++读写文件操作代码 常量 值 说明 fmOpenRead 0 以只读属性打开 fmOpenWrite 1 以只写属性打开 fmOpenReadWrite 2 以读/写属性打开 fmShareCompat 0 兼容FCB方式(汇编中有相应的DOS功能调用,感兴趣自已查阅相关资料 ) fmShareExclusive 16 共享方式:以独占方式打开,在关闭以前,别人不能访问 fmShareDenyWrite 32 共享方式:拒绝写访问 fmShareDenyRead 48 共享方式:拒绝读访问

Lua中遍历文件操作代码实例

  这篇文章主要介绍了Lua中遍历文件操作代码实例,本文直接给出示例代码,需要的朋友可以参考下 写的一个关于遍历文件的程序段 记录一下咯 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 --[[检查所有.txt文件 比如A.txt中第一行规定有20列,但是在X行中多输入一个Tab,则输出:A表的X行填写不规范,行末有多余填写 ]]   getinfo = io.popen('dir .

asp教程-生成静态html文件实例代码

asp教程-生成静态html文件实例代码 <% '====================================================== ' 文件名称 : inc/ClsTempIndex.asp ' 文件作用 : 首页类 ' 最后更新 : 2008.08.10 '====================================================== Class Cls_TempIndex     Public OriginTempContent,Te

dicom-Delphi中读取DICOM文件的代码

问题描述 Delphi中读取DICOM文件的代码 这一句das. attributes. listattrinute('',meno1.lines)中,为什么第一个参数空缺,第一个参数表示什么意思啊?第二个参数meno1.lines是代表的什么?如果要读取一个文件夹下的dcm文件,要怎么改这行代码呢? 解决方案 这个图,少了一个图,不好意思 解决方案二: 阻止删除文件(文件占坑)的delphi代码MATLAB 读取DICOM格式文件delphi 拷贝网络共享文件 代码

asp fso type属性取得文件类型代码

asp fso type属性取得文件类型代码是用来返回类型指定的文件或文件夹. 语法 FileObject.Type FolderObject.Type   实例File对象 <% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.GetFile("c:test.txt") Response.Write("The file test.txt is of

java读取指定文件内容代码

java读取指定文件内容代码 <%@ page contenttype="text/html; charset=gb2312" language="java" import="java.sql.*" errorpage="" %> <html xmlns="http://www.111cn.net/1999/xhtml"> <head> <meta http-equ

目的文件已不在原目录,程序还会继续执行写文件操作吗?

最近,在现场调试程序的同事反馈回了一个问题:目的文件已不在原目录,程序还会继续执行写文件操作.我们了解了一下,具体的情况是这样的:某软件(运行在Linux下)有一个功能是在配置好的某个目录中生成文件,在文件生成的过程中,现场同事将已经生成的文件移动到了另外一个目录中:过了一段时间后发现,程序继续向移动之后的文件中写入内容,导致该文件不断增大. 为了还原现场问题,我们编写了以下程序: /********************************************************

php读取大文件实例代码

在php开发中,经常遇到要读取一些文件,最简便的方法莫过于使用一些如file.file_get_contents之类的函数,简简单单的几行代码就能轻松的搞定.但当需要操作的文件是一个比较大的文件时,这些函数可能就显的力不从心, 下面将从一个需求入手来说明对于读取大文件时,常用的操作方法.   需求:有一个800M的日志文件,大约有500多万行,用php返回最后几行的内容.   实现方法有以下:   1. 直接采用 file函数 来操作   注:由于 file函数是一次性将所有内容读入内存,而ph