Read decimal, string and char from a file using FileStream and StreamReader : StreamReader « File Directory Stream « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » File Directory Stream » StreamReader 
15.20.5.Read decimal, string and char from a file using FileStream and StreamReader
using System;
using System.IO;
using System.Text;

static class MainClass
{
    static void Main()
    {
        // Create a new file.
        using (FileStream fs = new FileStream("test.txt", FileMode.Create))
        {
            using (StreamWriter w = new StreamWriter(fs, Encoding.UTF8))
            {
                // Write a decimal, string, and char.
                w.WriteLine(124.23M);
                w.WriteLine("Test string");
                w.WriteLine('A');
            }
        }


        // Open the file in read-only mode.
        using (FileStream fs = new FileStream("test.txt", FileMode.Open))
        {
            using (StreamReader r = new StreamReader(fs, Encoding.UTF8))
            {
                // Read the data and convert it to the appropriate data type.
                Console.WriteLine(Decimal.Parse(r.ReadLine()));
                Console.WriteLine(r.ReadLine());
                Console.WriteLine(Char.Parse(r.ReadLine()));
            }
        }

    }
}
124.23
Test string
A
15.20.StreamReader
15.20.1.A FileReader
15.20.2.Use StreamReader to read a line from a text file
15.20.3.Demonstrate StringReader and StringWriter
15.20.4.Create StreamReader through FileStream
15.20.5.Read decimal, string and char from a file using FileStream and StreamReader
15.20.6.Create StringReader from String
15.20.7.StreamReader: ReadLine
15.20.8.StreamReader: ReadToEnd()
15.20.9.Read one character at a time
15.20.10.Create StreamReader from a URL
15.20.11.Stream Read with StreamReader
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.