asp教程.net c#创建的数据文件进行读取
using system;
using system.web;public class averagehandler : ihttphandler
{
public bool isreusable
{ get { return true; } }
public void processrequest(httpcontext ctx)
{
ctx.response.write("hello");
}
}
cs文件
using system.web
public sealed class textbuilder : ihttphandler
{
public void processrequest(httpcontext context)
{
context.response.clearcontent();
context.response.contenttype = "text/plain";
context.response.write("hello world");
context.response.end();
}
public bool isreusable
{
get { return true; }
}
}
方法二
binarywriter 和 binaryreader 类用于读取和写入数据,而不是字符串。下面的代码示例示范了向新的、空文件流 (test.data) 写入数据及从该文件读取数据。在当前目录中创建了数据文件之后,也就同时创建了相关的 binarywriter 和 binaryreader,binarywriter 用于向 test.data 写入整数 0 到 10,test.data 在文件尾留下了一个文件指针。在将文件指针设置回初始位置后,binaryreader 读出指定的内容。
[c#]
using system;
using system.io;
class mystream {
private const string file_name = "test.data";
public static void main(string[] args) {
// create the new, empty data file.
if (file.exists(file_name)) {
console.writeline("{0} already exists!", file_name);
return;
}
filestream fs = new filestream(file_name, filemode.createnew);
// create the writer for data.
binarywriter w = new binarywriter(fs);
// write data to test.data.
for (int i = 0; i w.write( (int) i);
}
w.close();
fs.close();
// create the reader for data.
fs = new filestream(file_name, filemode.open, fileaccess.read);
binaryreader r = new binaryreader(fs);
// read data from test.data.
for (int i = 0; i console.writeline(r.readint32());
w.close();
}
}
}
如果 test.data 已存在于当前目录中,则引发一个 ioexception。始终使用 filemode.create 创建新文件,而不引发 ioexception。
方法四
using system.web
public sealed class textbuilder : ihttphandler
{
public void processrequest(httpcontext context)
{
context.response.clearcontent();
context.response.contenttype = "text/plain";
context.response.write("hello world");
context.response.end();
}
public bool isreusable
{
get { return true; }
}
}
洋果子店rose最新版本
洋果子店最新版是一款十分容易让人垂涎的开店经营类手游。游戏玩
明日大亨最新版
明日大亨手游,一个非常经典有趣的模拟经营类型的商战手游,在游
早安我的少年日服最新版2024
早安我的少年日服是一款治愈恋爱手游,清新明亮的游戏画面,让你
我的世界基岩版1.16正式版
我的世界基岩版是一款模拟经营手游,游戏采用的是经典像素玩法,
早安我的少年最新版2024
早安我的少年是一款养成恋爱手游,在这款游戏中,玩家们将可以体