.NET写入文本文件的操作浅析

.NET写入文本文件的操作是如何实现的呢?下面我们通过使用VB和C#两种代码示例向你演示如何实现写入文本文件的操作细节,希望对你了解写入文本文件有所帮助

创新互联建站科技有限公司专业互联网基础服务商,为您提供四川主机托管高防主机,成都IDC机房托管,成都主机托管等互联网服务。

***个示例演示如何向现有文件中添加文本。第二个示例演示如何创建一个新文本文件并向其中写入一个字符串。 WriteAllText 方法可提供类似的功能。

.NET写入文本文件的操作时需要注意注意
 
Visual Basic 用户可以选择使用由 My.Computer.FileSystem 对象提供的方法和属性进行文件 I/O。有关更多信息,请参见 My.Computer.FileSystem 对象。

.NET写入文本文件的操作示例Visual Basic实现添加文本

 
 
 
  1. Imports System
  2. Imports System.IO
  3. Class Test
  4. Public Shared Sub Main()
  5. ' Create an instance of StreamWriter to write text to a file.
  6. Using sw As StreamWriter = New StreamWriter("TestFile.txt")
  7. ' Add some text to the file.
  8. sw.Write("This is the ")
  9. sw.WriteLine("header for the file.")
  10. sw.WriteLine("-------------------")
  11. ' Arbitrary objects can also be written to the file.
  12. sw.Write("The date is: ")
  13. sw.WriteLine(DateTime.Now)
  14. sw.Close()
  15. End Using
  16. End Sub
  17. End Class

.NET写入文本文件的操作示例C#实现添加文本

 
 
 
  1. using System;
  2. using System.IO;
  3. class Test 
  4. {
  5. public static void Main() 
  6. {
  7. // Create an instance of StreamWriter to write text to a file.
  8. // The using statement also closes the StreamWriter.
  9. using (StreamWriter sw = new StreamWriter("TestFile.txt")) 
  10. {
  11. // Add some text to the file.
  12. sw.Write("This is the ");
  13. sw.WriteLine("header for the file.");
  14. sw.WriteLine("-------------------");
  15. // Arbitrary objects can also be written to the file.
  16. sw.Write("The date is: ");
  17. sw.WriteLine(DateTime.Now);
  18. }
  19. }
  20. }

.NET写入文本文件的操作示例Visual Basic实现写入一个字符串

 
 
 
  1. Option Explicit On 
  2. Option Strict On
  3. Imports System
  4. Imports System.IO
  5. Public Class TextToFile
  6. Private Const FILE_NAME As String = "MyFile.txt"
  7. Public Shared Sub Main()
  8. If File.Exists(FILE_NAME) Then
  9. Console.WriteLine("{0} already exists.", FILE_NAME)
  10. Return
  11. End If
  12. Using sw As StreamWriter = File.CreateText(FILE_NAME)
  13. sw.WriteLine("This is my file.")
  14. sw.WriteLine("I can write ints {0} or floats {1}, and so on.", 1, 4.2)
  15. sw.Close()
  16. End Using
  17. End Sub
  18. End Class

.NET写入文本文件的操作示例C#实现写入一个字符串

 
 
 
  1. using System;
  2. using System.IO;
  3. public class TextToFile 
  4. {
  5. private const string FILE_NAME = "MyFile.txt";
  6. public static void Main(String[] args) 
  7. {
  8. if (File.Exists(FILE_NAME)) 
  9. {
  10. Console.WriteLine("{0} already exists.", FILE_NAME);
  11. return;
  12. }
  13. using (StreamWriter sw = File.CreateText(FILE_NAME))
  14. {
  15. sw.WriteLine ("This is my file.");
  16. sw.WriteLine ("I can write ints {0} or floats {1}, and so on.", 
  17. 1, 4.2);
  18. sw.Close();
  19. }
  20. }
  21. }

.NET写入文本文件的操作示例的基本实现就向你介绍到这里,希望对你了解.NET写入文本文件的操作有所帮助。

本文标题:.NET写入文本文件的操作浅析
网站路径:http://www.shufengxianlan.com/qtweb/news45/259445.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联