aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Regarding IO Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Regarding IO" Watch "Regarding IO" New topic
Author

Regarding IO

lakshmi nair
Ranch Hand

Joined: Oct 11, 2000
Posts: 63
Hi,
Can anybody explain how deep should we know about IO classes.
I'm finding all those things really confusing...
Thanks in adv.
Lakshmi
Aru Ven
Ranch Hand

Joined: Sep 28, 2000
Posts: 199
Lakshmi,
In IO, Basically u should be fluent with the constructors.
Read about the abstract classes, File class, Know the modes of RandomAccessFile...
To start with the above should help.
HTH
Aruna
rob mcfarland
Greenhorn

Joined: Oct 04, 2000
Posts: 11
There is a fair bit of stuff to learn with IO and I found it helped to remember the class hierarchy structures. For example classes derived from InputStream have pretty much the same structure (and names) as ones derived from OutputStream. The same applies to Reader and Writer. Definitely learn the constructors - many of them take the same arguments. Learn the File class well. In terms of methods, a lot of them are inherited from the abstract superclasses so once you've learnt them (there's not that many) you only really need to worry about the extra ones provided by DataInputStream and DataOutputStream.
Most of the questions I encountered on the exam concentrated on the more commonly used classes, FileInputStream, DataInputStream, File and RandomAccessFile.
Cheers,
Rob.
lakshmi nair
Ranch Hand

Joined: Oct 11, 2000
Posts: 63
Thanks a lot
Lakshmi
 
IntelliJ Java IDE
 
subject: Regarding IO
 
Threads others viewed
AWT and IO in SCJP 1.4?
while loop
Serializable and Inheritance - How many objects?
Does Java have asynchronized I/O?
how to make sure a file is complete when opening it
MyEclipse, The Clear Choice