Write to a text file with StreamWriter : StreamWriter « File Directory « Visual C++ .NET

Home
Visual C++ .NET
1.2D
2.Class
3.Collections
4.Data Type
5.Database ADO.net
6.Delegate
7.Development
8.File Directory
9.Function
10.Generics
11.GUI Form
12.Language Basics
13.Network
14.Reflection
15.Security
16.Statement
17.Structure
18.Thread
19.XML
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Visual C++ .NET » File Directory » StreamWriter 
Write to a text file with StreamWriter
 

#include "stdafx.h"
using namespace System;
using namespace System::IO;

void main()
{
    array<String^>^ data = gcnew array<String^> {"This is ""a test!""This is only a test." };

    StreamWriter ^sw = gcnew StreamWriter(gcnew FileStream("file.txt",FileMode::Create, FileAccess::Write, FileShare::None));

    for (int i = 0; i < data->Length-1; i++){
        sw->Write(data[i]);
    }
    sw->WriteLine();
    sw->WriteLine(data[2]);
    sw->Close();

    StreamReader ^sr = File::OpenText("file.txt");
    String^ in = sr->ReadLine();
    Console::WriteLine(in);

    Console::WriteLine(sr->ReadToEnd());

    sw->Close();
}

   
  
Related examples in the same category
1.Read a text file with StreamReader
2.Read text file to the end
3.Write line to text file with StreamWriter
4.Create StreamWriter from file name
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.