The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
November 2000

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Streams&Graphics

Posted by sunitha on December 24, 2000 at 2:59 AM

what is filterinputstream &filteroutputstream?why do we need them?

explain the difference between repaint(),update(),paint() methods of Graphics class ...when to use each with examples

paint() method takes a Graphics class argument and we use the methods of the class without instantiating it,for eg,
void paint(Graphics g)
{ g.drawstring(msg,15,78);
}

how are we able to use the method drawstring() without creating an object of Graphics?

i tried to run aprogram to copy one file to another using :
1.FileInputStream & FileOutputstream
2.FileReader & FileWriter
i didnot close the streams but it ran successfully in1.
whereas in2.it didnot copy the file until i closed the Reader & Writer streams .Why is it so?




Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us