45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:怎么样通过C#处理文本文件?

怎么样通过C#处理文本文件?

2016-08-25 10:34:47 来源:www.45fan.com 【

怎么样通过C#处理文本文件?

文本文件是一种常用的文件格式,所以如何处理文本文件也就成为编程的一个重点。本文就来探讨一下用C#是如何来处理文本文件。其内容重点就是如何读取文本文件内容、如何改变文本文件的内容,以及如何用C#来实现对读取后的文本文件的打印预览和打樱

一.本文程序设计和运行的软件环境:

(1).微软公司视窗2000服务器版

(2)..NetFrameWorkSDKBeta2

二.C#处理文本文件的一些重要环节:

(1).如何读取文本文件内容:

在本文介绍的程序中,是把读取的文本文件,用一个richTextBox组件显示出来。要读取文本文件,必须使用到"StreamReader"类,这个类是由名字空间"System.IO"中定义的。通过"StreamReader"类的"ReadLine()"方法,就可以读取打开数据流当前行的数据了。下面代码实现的功能就是读取"C:/file.txt"并在richTextBox1组件中显示出来:

FileStreamfs=newFileStream("C://file.txt",FileMode.Open,FileAccess.Read);
StreamReaderm_streamReader=newStreamReader(fs);
//使用StreamReader类来读取文件
m_streamReader.BaseStream.Seek(0,SeekOrigin.Begin);
//从数据流中读取每一行,直到文件的最后一行,并在richTextBox1中显示出内容
this.richTextBox1.Text="";
stringstrLine=m_streamReader.ReadLine();
while(strLine!=null)
{
this.richTextBox1.Text+=strLine+"/n";
strLine=m_streamReader.ReadLine();
}
//关闭此StreamReader对象
m_streamReader.Close();


(2).如何改变文本文件中数据内容:

在本文介绍的程序中,改变文本文件数据内容的功能是通过改变richTextBox1中的内容来实现的,当richTextBox1这的内容改变后,按动"另存为",就把richTextBox1中内容存储到指定的文本文件中了。要想改变文本文件内容,要使用到"StreamWriter"类,这个类和"StreamReader"一样,都是由"System.IO"名字空间来定义的。通过"StreamWriter"类的"Write()"方法,就可以轻松实现文本文件内容的更改了。下面代码的功能是:如果"C"盘存在"file.txt",则把richTextBox1中的内容写入到"file.txt"中,如果不存在,则创建此文件,然后在写入文本数据。

//创建一个文件流,用以写入或者创建一个StreamWriter
FileStreamfs=newFileStream("C//file.txt",FileMode.OpenOrCreate,FileAccess.Write);
StreamWriterm_streamWriter=newStreamWriter(fs);
m_streamWriter.Flush();
//使用StreamWriter来往文件中写入内容
m_streamWriter.BaseStream.Seek(0,SeekOrigin.Begin);
//把richTextBox1中的内容写入文件
m_streamWriter.Write(richTextBox1.Text);
//关闭此文件
m_streamWriter.Flush();
m_streamWriter.Close();


从上面这二个代码可以,写入数据比起读取数据要显得容易些。

(3).如何实现打印预览:

打印预览是通过打印预览对话框来实现的,实现对读取得文本文件的打印预览,最为重要的就是要通知打印预览对话框所要预览的文件的内容。下面代码就是把richTextBox1中显示的内容,通过打印预览对话框显示出来:

stringstrText=richTextBox1.Text;
StringReadermyReader=newStringReader(strText);
PrintPreviewDialogprintPreviewDialog1=newPrintPreviewDialog();
printPreviewDialog1.Document=ThePrintDocument;
printPreviewDialog1.FormBorderStyle=FormBorderStyle.Fixed3D;
printPreviewDialog1.ShowDialog();


(4).如何打印文件:

在名字空间"System.Drawing.Printing"中定义了一个类"PrintDocument",通过调用此类的"Print"方法就可以触发在此名字空间中封装的另外一个事件"PrintPage"。在此事件中设定要打印的文档内容,从而实现队文本文件的打印操作。下面代码是调用"PrintDocument"的"Print"方法,和调用事件"PrintPage"来打印richTextBox1中的内容:

ThePrintDocument.Print();//其中ThePrintDocument是"PrintDocument"类的一个对象

下列代码是设定打印内容即打印richTextBox1中的内容:

floatlinesPerPage=0;
floatyPosition=0;
intcount=0;
floatleftMargin=ev.MarginBounds.Left;
floattopMargin=ev.MarginBounds.Top;
stringline=null;
FontprintFont=richTextBox1.Font;
SolidBrushmyBrush=newSolidBrush(Color.Black);
//计算每一页打印多少行
linesPerPage=ev.MarginBounds.Height/printFont.GetHeight(ev.Graphics);
//重复使用StringReader对象,打印出richTextBox1中的所有内容
while(count<linesPerPage&&((line=myReader.ReadLine())!=null))
{
//计算出要打印的下一行所基于页面的位置
yPosition=topMargin+(count*printFont.GetHeight(ev.Graphics));
//打印出richTextBox1中的下一行内容
ev.Graphics.DrawString(line,printFont,myBrush,leftMargin,yPosition,newStringFormat());
count++;
}
//判断如果还要下一页,则继续打印
if(line!=null)
ev.HasMorePages=true;
else
ev.HasMorePages=false;
myBrush.Dispose();


注释:由于在上述的代码中省掉了这些类所对于地名字空间,所以要想成功的编译和运行上述代码,就要在程序头部要导入所使用的名字空间。

三.用C#处理文本文件的完整源程序代码(control.cs):

掌握了上面这些关键步骤,就可以方便的得到用C#来处理文本文件的一个完整的源程序,具体如下:

usingSystem;
usingSystem.Drawing;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Windows.Forms;
usingSystem.Data;
usingSystem.IO;
usingSystem.Drawing.Printing;
publicclassForm1:Form
{
privateRichTextBoxrichTextBox1;
privateButtonbutton1;
privateButtonbutton2;
privateButtonbutton3;
privateButtonbutton4;
privateButtonbutton5;
privateOpenFileDialogopenFileDialog1;
privateSaveFileDialogsaveFileDialog1;
privatePrintDialogprintDialog1;
privatePrintDocumentThePrintDocument;
privatePrintPreviewDialogprintPreviewDialog1;
privateStringReadermyReader;
privateSystem.ComponentModel.Containercomponents=null;

publicForm1()
{
//初始化窗体中的各个组件
InitializeComponent();
}
//清除程序中使用多的资源
protectedoverridevoidDispose(booldisposing)
{
if(disposing)
{
if(components!=null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
privatevoidInitializeComponent()
{
richTextBox1=newRichTextBox();
button1=newButton();
button2=newButton();
button3=newButton();
button4=newButton();
button5=newButton();
saveFileDialog1=newSaveFileDialog();
openFileDialog1=newOpenFileDialog();
printPreviewDialog1=newPrintPreviewDialog();
printDialog1=newPrintDialog();
ThePrintDocument=newPrintDocument();
ThePrintDocument.PrintPage+=newPrintPageEventHandler(ThePrintDocument_PrintPage);
SuspendLayout();
richTextBox1.Anchor=AnchorStyles.None;
richTextBox1.Name="richTextBox1";
richTextBox1.Size=newSize(448,280);
richTextBox1.TabIndex=0;
richTextBox1.Text="";
button1.Anchor=AnchorStyles.None;
button1.Location=newPoint(41,289);
button1.Name="button1";
button1.Size=newSize(48,30);
button1.TabIndex=1;
button1.Text="打开";
button1.Click+=newSystem.EventHandler(button1_Click);
button2.Anchor=AnchorStyles.None;
button2.Location=newPoint(274,288);
button2.Name="button2";
button2.Size=newSize(48,30);
button2.TabIndex=4;
button2.Text="预览";
button2.Click+=newSystem.EventHandler(button2_Click);
button3.Anchor=AnchorStyles.None;
button3.Location=newPoint(108,288);
button3.Name="button3";
button3.Size=newSize(48,30);
button3.TabIndex=2;
button3.Text="保存";
button3.Click+=newSystem.EventHandler(button3_Click);
button4.Anchor=AnchorStyles.None;
button4.Location=newPoint(174,288);
button4.Name="button4";
button4.Size=newSize(80,30);
button4.TabIndex=3;
button4.Text="打印机设置";
button4.Click+=newSystem.EventHandler(button4_Click);
button5.Anchor=AnchorStyles.None;
button5.Location=newPoint(345,288);
button5.Name="button5";
button5.Size=newSize(48,30);
button5.TabIndex=5;
button5.Text="打印";
button5.Click+=newSystem.EventHandler(button5_Click);
saveFileDialog1.DefaultExt="*.txt";
saveFileDialog1.FileName="file.txt";
saveFileDialog1.InitialDirectory="c://";
saveFileDialog1.Title="另存为!";
openFileDialog1.DefaultExt="*.txt";
openFileDialog1.FileName="file.txt";
openFileDialog1.InitialDirectory="c://";
openFileDialog1.Title="打开文本文件!";
AutoScaleBaseSize=newSize(6,14);
ClientSize=newSize(448,325);
this.Controls.Add(button1);
this.Controls.Add(button2);
this.Controls.Add(button3);
this.Controls.Add(button4);
this.Controls.Add(button5);
this.Controls.Add(richTextBox1);

this.MaximizeBox=false;
this.Name="Form1";
this.Text="C#来操作文本文件";
this.ResumeLayout(false);
}
staticvoidMain()
{
Application.Run(newForm1());
}

privatevoidbutton1_Click(objectsender,System.EventArgse)
{
try
{
if(openFileDialog1.ShowDialog()==DialogResult.OK)
{
FileStreamfs=newFileStream(openFileDialog1.FileName,FileMode.Open,FileAccess.Read);
StreamReaderm_streamReader=newStreamReader(fs);
//使用StreamReader类来读取文件
m_streamReader.BaseStream.Seek(0,SeekOrigin.Begin);
//从数据流中读取每一行,直到文件的最后一行,并在richTextBox1中显示出内容
this.richTextBox1.Text="";
stringstrLine=m_streamReader.ReadLine();
while(strLine!=null)
{
this.richTextBox1.Text+=strLine+"/n";
strLine=m_streamReader.ReadLine();
}
//关闭此StreamReader对象
m_streamReader.Close();
}
}
catch(Exceptionem)
{
Console.WriteLine(em.Message.ToString());
}

}

privatevoidbutton3_Click(objectsender,System.EventArgse)
{
try
{
//获得另存为的文件名称
if(saveFileDialog1.ShowDialog()==DialogResult.OK)
{
//创建一个文件流,用以写入或者创建一个StreamWriter
FileStreamfs=newFileStream(@saveFileDialog1.FileName,FileMode.OpenOrCreate,FileAccess.Write);
StreamWriterm_streamWriter=newStreamWriter(fs);
m_streamWriter.Flush();

//使用StreamWriter来往文件中写入内容
m_streamWriter.BaseStream.Seek(0,SeekOrigin.Begin);
//把richTextBox1中的内容写入文件
m_streamWriter.Write(richTextBox1.Text);
//关闭此文件
m_streamWriter.Flush();
m_streamWriter.Close();
}
}
catch(Exceptionem)
{
Console.WriteLine(em.Message.ToString());
}
}

privatevoidbutton4_Click(objectsender,System.EventArgse)
{
printDialog1.Document=ThePrintDocument;
printDialog1.ShowDialog();
}
//预览打印文档
privatevoidbutton2_Click(objectsender,System.EventArgse)
{
try
{
stringstrText=richTextBox1.Text;
myReader=newStringReader(strText);
PrintPreviewDialogprintPreviewDialog1=newPrintPreviewDialog();
printPreviewDialog1.Document=ThePrintDocument;
printPreviewDialog1.FormBorderStyle=FormBorderStyle.Fixed3D;
printPreviewDialog1.ShowDialog();
}
catch(Exceptionexp)
{
Console.WriteLine(exp.Message.ToString());
}
}
//打印richTextBox1中的内容
privatevoidbutton5_Click(objectsender,System.EventArgse)
{
printDialog1.Document=ThePrintDocument;
stringstrText=richTextBox1.Text;
myReader=newStringReader(strText);
if(printDialog1.ShowDialog()==DialogResult.OK)
{
ThePrintDocument.Print();
}
}
protectedvoidThePrintDocument_PrintPage(objectsender,PrintPageEventArgsev)
{
floatlinesPerPage=0;
floatyPosition=0;
intcount=0;
floatleftMargin=ev.MarginBounds.Left;
floattopMargin=ev.MarginBounds.Top;
stringline=null;
FontprintFont=richTextBox1.Font;
SolidBrushmyBrush=newSolidBrush(Color.Black);
//计算每一页打印多少行
linesPerPage=ev.MarginBounds.Height/printFont.GetHeight(ev.Graphics);
//重复使用StringReader对象,打印出richTextBox1中的所有内容
while(count<linesPerPage&&((line=myReader.ReadLine())!=null))
{
//计算出要打印的下一行所基于页面的位置
yPosition=topMargin+(count*printFont.GetHeight(ev.Graphics));
//打印出richTextBox1中的下一行内容
ev.Graphics.DrawString(line,printFont,myBrush,leftMargin,yPosition,newStringFormat());
count++;
}
//判断如果还要下一页,则继续打印
if(line!=null)
ev.HasMorePages=true;
else
ev.HasMorePages=false;
myBrush.Dispose();
}
}


四.总结:

本文虽然只是介绍了用C#处理文本文件,但其实对C#处理其他文件也有很多的参考价值,这是因为在名字空间"System.IO"中定义的用以处理其他文件的类的结构和用以处理文本文件的类的结构有很多是相同的。希望本文对你用C#进行文件方面的编程有所帮助。

本文地址:http://www.45fan.com/a/question/67343.html
Tags: 文件 处理 文本
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部