Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My code tries to extract a filename to load a file from reading another file that contains the filename:

public static void main(String[] args) throws IOException
{
    Scanner scan;
    String transFilename;
    String filename;

    scan = new Scanner(System.in);
    System.out.print("Enter the name of your transaction file please (include .txt extension): ");
    transFilename = scan.nextLine();
    scan = new Scanner(new FileReader(transFilename));

    filename = readLine.next(2,readLine.lastIndexOf(""));    
    Scanner input = new Scanner( new FileReader(filename));   
}

the Error generated:

blah.java:72: cannot find symbol
symbol  : method lastIndexOf(java.lang.String)
location: class java.util.Scanner
            filename = readLine.next(2,readLine.lastIndexOf(""));    
                                               ^
1 error

The same error is generated when i tried to use ".length" method that should be built into java...

share|improve this question
Sorry I forgot to include readLine scanner, which has been initialized. Scanner readLine; readLine = new Scanner(scan.nextLine()); – john Apr 25 '11 at 10:09

2 Answers

up vote 0 down vote accepted

It seems readLine is of type Scanner and you are trying to invoke lastIndexOf() but thi method doesn't belong to Scanner class

share|improve this answer
yes...I now realize what I'm doing. Dumb mistake. – john Apr 25 '11 at 10:20
Happy to help :) – Jigar Joshi Apr 25 '11 at 10:21

Your readLine is java.util.Scanner... I guess you're thinking that it's a java.lang.String.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.