Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [CODE]import java.io.*; public class cmdread { public static void main(String ar[]) { try{ InputStreamReader is=new InputStreamReader(System.in); BufferedReader br=new BufferedReader(is); String s=br.readLine(); File f1=new File("aaryan.txt"); //creating a new file in which u want to write contents of console f1.createNewFile(); FileWriter fw=new FileWriter(f1); fw.write(s); fw.close(); } catch(Exception e) { System.out.println(e); } } … |
The End.