package com.milestone.snippets;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
/**
* @author AARYA
*
*/
public class CodeSnippetTester
{
/**
* @param args
*/
public static void main(String[] args)
{
try
{
BufferedWriter out = new BufferedWriter(new FileWriter("addressbook.txt"));
out.write("contact1");
out.close();
} catch (IOException e)
{
e.printStackTrace();
}
}
}
Saturday, August 2, 2008
Program to write to a file
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment