- summary: URGENT: compiling problem --> URGENT: compilation problem
I am using jdk1.3 version. Since i don't have
permission to update the rt.jar, i placed the
logging.jar in my home folder and appended the
logging.jar to the javac's bootclasspath. Since, there
is no option for append/preappending jars to classpath
of javac (java compile), i set the logging.jar in
CLASSPATH, but it is not able to compile the file
using logger API. The following error is thrown
test.java:22: cannot resolve symbol
symbol : class logging
location: package util
import java.util.logging;
^
test.java:26: cannot resolve symbol
symbol : class Logger
location: class examples.test
private static Logger logger = Logger.getLogger
("examples.web.handlers");
^
examples.test.java:26: cannot resolve symbol
symbol : variable Logger
location: class examples.test
private static Logger logger = Logger.getLogger
("examples.web.handlers");
Please give a solution for this asap.