I am having problems getting the compiler to find a package :(
In short, I have create a class called "User" and it is stored ....classes/com/wrox/utilities/User.java
I compiled this class fine.
I then create a class called "ListDemova" and saved .../classes/ListDemo.java
The first line of this class says "import com.wrox.utilities.*;"
When I try to compile this class I get the following exception:
ListDemo.java:1: package com.wrox.utilities does not exist
import com.wrox.utilities.*;
^
I really don't understand why it doesn't find my package
Please help.
Many Thanks
Kiz
^