Posts

Showing posts from April 30, 2011

Very Simple program to create any file in java

Image
It is very simple program to create any file import java.io.*; class SysExample { public static void main(String[] args) throws Exception { int c; System.setOut(new PrintStream(new FileOutputStream(args[0]))); while((c=System.in.read()) != -1) System.out.print((char)c); } }