I still can not figure out what is wrong here:

------------------------------------------------------------------
import java.io.*;
 public class ChangeToUpperCase extends FileInputStream {
     public int read() {
         int c;
         c = super.read();
     }
 }
----------------------------------------------------------------------------
produces the following error:

init:
deps-jar:
Compiling 1 source file to 
/home/LongtermStorage/DataTree/JavaStorage/JavaWorkDir/javaiostream/samples/MyIOStreamProject/build/classes
/home/LongtermStorage/DataTree/JavaStorage/JavaWorkDir/javaiostream/samples/MyIOStreamProject/src/ChangeToUpperCase.java:12:
 
cannot find symbol
symbol  : constructor FileInputStream()
location: class java.io.FileInputStream
 public class ChangeToUpperCase extends FileInputStream {
1 error
BUILD FAILED (total time: 0 seconds)

Any clues --- Or can someone show how
it is done!>?

Frustrated to the Max!

-- 
Competency and chastity have much in common,
they both encompass their own punishment! 
 
-- C.E. Thornton -- Hawthorne Press --


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to