Posts
 
Reputation
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
~6K People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for ghfeyn

[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); } } …

Member Avatar for JamesCherrill
0
6K

The End.