I've created a class that wants to use TextIO.put.
TextIO.put("Input file name? ");
But my IDE (Eclipse) is complaining that it can't resolve TextIO. All the
documentation I've read says it's ok
but there's nothing in the API docs about it. Do I need to import a library
or something so that my program will work?
proGex - 15 Mar 2005 08:18 GMT
TextIO is not a class in the standard J2SE API
If it is from another jar file, you need to include the jar file in
your Build Path under project properties and then import the class in
your code