Use the OpenStandardOutput method. : StreamWriter « Stream File « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Stream File » StreamWriter 
13.19.8.Use the OpenStandardOutput method.
Imports System.IO

Public Class InsertTabs
   Private Const tabSize As Integer = 4

   Public Shared Function Main(args() As StringAs Integer
      Dim writer As StreamWriter = Nothing
      writer = New StreamWriter("output.txt")
      ' Redirect standard output from the console to the output file.
      Console.SetOut(writer)
      ' Redirect standard input from the console to the input file.
      Console.SetIn(New StreamReader("input.txt"))

      Dim line As String = "this is a test"
      Dim newLine As String = line.Replace("".PadRight(tabSize, " "c), ControlChars.Tab)
      Console.WriteLine(newLine)
      writer.Close()
      ' Recover the standard output stream
      Dim standardOutput As New StreamWriter(Console.OpenStandardOutput())
      standardOutput.AutoFlush = True
      Console.SetOut(standardOutput)
      Return 0
   End Function 
End Class
13.19.StreamWriter
13.19.1.Create StreamWriter from FileStream
13.19.2.Use StreamWriter and StreamReader to deal with text file
13.19.3.Save various data types to a text file
13.19.4.Log file with StreamWriter and StreamReader
13.19.5.Use WriteAllLines to write text to a file
13.19.6.Redirect standard output from the console to the output file
13.19.7.Recover the standard output stream so that a completion message can be displayed.
13.19.8.Use the OpenStandardOutput method.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.