Read data from console and print in one file. That would be
in C:\temp ? Thanks, Bose

Answers were Sorted based on User's Feedback



Read data from console and print in one file. That would be in C:\temp ? Thanks, Bose..

Answer / pushpa

//Read data from console and print in one file.
import java.io.*;
class ReadDataFromConsole
{
public static void main(String[] args)
{
try{
String fileStr = ""; // declare a string variable
for(int i = 0; i<args.length; i++){ // for loop start
with argument size

fileStr = fileStr + " " + args[i];
}


//create an instance of the random acces file "rfile'.
RandomAccessFile rfile = new
RandomAccessFile("C:/Temp/text.txt","rw");
// write object into the file.
rfile.writeBytes(fileStr);


}catch(Exception ex){
ex.printStackTrace();

}
}
}

Is This Answer Correct ?    3 Yes 2 No

Read data from console and print in one file. That would be in C:\temp ? Thanks, Bose..

Answer / avi

@Pushpa...
If u r reading console data from the method other than main() then u need to use Console class and scanner.

And use StringBuffer in place of String as when u r using '+' operator it creates new string object. So use StringBuffer and use API append("").

Is This Answer Correct ?    1 Yes 0 No

Read data from console and print in one file. That would be in C:\temp ? Thanks, Bose..

Answer / ravi jain

good answer pushpa.. :)

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

Can we override private method?

0 Answers  


What is Marker interface in java? and what is clone?

16 Answers   Persistent, Wipro,


What are constructors in java?

0 Answers  


Difference between prefix and postfix forms of the ++operator?

3 Answers  


What is the basic difference between string and stringbuffer object?

0 Answers  






while creating thread why we extend thread class

2 Answers  


What will happens if you opened Internet Explorer 4 times?

2 Answers  


What is reverse function?

0 Answers  


What are the methods used to implement for the key object in the hash map?

0 Answers  


Can a static method be overridden in java?

0 Answers  


What is difference between static class and normal class?

0 Answers  


Where are the card layouts used?

0 Answers  


Categories