vote up 0 vote down star

Hey, I'm trying to compile my class along with a provided .jar file which contains classes that my class will use.

This is what I've been trying:

javac -classpath .:WordSearch.jar WordSearchSolver.java

And this is the response:

WordSearchSolver.java:16: cannot find symbol
symbol  : class PuzzleWord
location: class WordSearchSolver
    public ArrayList<PuzzleWord> findwords()
                 ^
WordSearchSolver.java:18: cannot find symbol
symbol  : class PuzzleWord
location: class WordSearchSolver
    return new ArrayList<PuzzleWord>();
                         ^

2 errors

This is my class:

import java.util.ArrayList;

public class WordSearchSolver
{
    public WordSearchSolver(int size, char[][] puzzleboard, ArrayList<String> words)
    {

    }

    public ArrayList<PuzzleWord> findwords()
    {
        return new ArrayList<PuzzleWord>();
    }
}

WordSearch.jar contains:

PuzzleUI.class
PuzzleWord$Directions.class
PuzzleWord.class
Natural.class

(WordSearchSolver.java and Wordsearch.jar are in the same directory)

Am I missing something?

flag

73% accept rate

3 Answers

vote up 0 vote down

It ended up being a combination of semicolons and quotation marks.

javac -classpath ".;WordSearch.jar" WordSearchSolver.java

Thanks everyone for pointing me in the right direction!

link|flag
vote up 1 vote down

You aren't importing any of the classes from your WordSearch.jar in your WordSearchSolver class. You need import statements at the top of this class including their package.

link|flag
As far as I know, the classes from WordSearch.jar aren't even in a package... – mportiz08 Oct 4 at 23:14
They're in the same package. They don't require importing – Brian Agnew Oct 5 at 8:29
Brian, that wasnt clear in the example. – akf Oct 5 at 11:16
vote up 1 vote down

Although you're on Cygwin, I'm guessing that your path separator should be a semicolon, since the Java compiler/JVM will be running in a Windows environment.

javac -cp .\;WordSearch.jar ...

Note that the semicolon must be escaped to prevent interpretation by the Cygwin shell (thanks to bkail below)

link|flag
I get even stranger errors involving bash when I use semicolons. – mportiz08 Oct 4 at 23:15
You must quote the semicolon to avoid it being interpreted by Cygwin. For example, javac -cp .\;WordSearch.jar or javac -cp ".;WordSearch.jar" – bkail Oct 5 at 2:53
@bkail - thanks. Now corrected – Brian Agnew Oct 5 at 8:29

Your Answer

Get an OpenID
or

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