Thread: Vector Problem
View Single Post
Old Dec 21st, 2005, 6:54 PM   #3
TecBrain
Hobbyist Programmer
 
Join Date: Sep 2004
Location: Cyprus
Posts: 147
Rep Power: 5 TecBrain is on a distinguished road
Quote:
Originally Posted by JDStud6
import java.util.Vector;

JD
Didnt Help.

testDriver.java:48: cannot resolve symbol
symbol  : variable Vector
location: class testDriver
        Vector <String> lines = new Vector();
        ^
testDriver.java:48: cannot resolve symbol
symbol  : variable String
location: class testDriver
        Vector <String> lines = new Vector();
                ^
testDriver.java:48: cannot resolve symbol
symbol  : variable lines
location: class testDriver
        Vector <String> lines = new Vector();
                        ^
testDriver.java:65: cannot resolve symbol
symbol  : variable lines
location: class testDriver
                lines.addElement(line);
                ^
testDriver.java:76: cannot resolve symbol
symbol  : variable lines
location: class testDriver
        return lines;
               ^
testDriver.java:83: cannot resolve symbol
symbol  : constructor PrintStream (java.io.File)
location: class java.io.PrintStream
                         ps = new PrintStream (new File(fileout));
                              ^
6 errors
__________________
Personal Portfolio
TecBrain Support Forum
Linux VS Windows ... Dont Even Think of it ..
Distribution: Slackware
if (OS==Linux) return success
There are 10 kinds of people, those who can read binary numbers and those who can't.
TecBrain is offline   Reply With Quote