Test Post

Posted by Kartik Sharma on
Hi This is my test blog and here goes the code snippet



code
BufferedWriter out = null;
try {
    out = new BufferedWriter(new FileWriter(”filename”, true));
    out.write(”aString”);
} catch (IOException e) {
    // error processing code
} finally {
    if (out != null) {
        out.close();
    }
}



No comments:

Post a Comment