Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dump Question about Win98 settings

Status
Not open for further replies.

BlindPete

Programmer
Jul 5, 2000
711
US
I figure I am mssing something simple in the compiler setup.<br>I get following errors from compiler<br>*****<br>com/au/fe/ui/GUIC.java:11: cannot resolve symbol<br>symbol&nbsp;&nbsp;: class Map<br>location: class com.au.fe.ui.GUIC<br>&nbsp;&nbsp;&nbsp;&nbsp;Map mapdraw;<br>&nbsp;&nbsp;&nbsp;&nbsp;^<br>com/au/fe/ui/GUIC.java:50: cannot resolve symbol<br>symbol&nbsp;&nbsp;: class Map<br>location: class com.au.fe.ui.GUIC<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mapdraw = new Map();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^<br>*****<br>My GUIC.java has <br><br>package com.au.fe.ui;<br><br>as the first line.<br>*****<br>dos settings...<br><br>TMP=c:\windows\TEMP<br>TEMP=C:\windows\TEMP<br>PROMPT=$p$g<br>winbootdir=C:\WINDOWS<br>COMSPEC=C:\WINDOWS\COMMAND.COM<br>DBROOT=C:\Sun\Adabas<br>DBWORK=C:\Sun\Adabas\sql<br>DBCONFIG=C:\Sun\Adabas\sql<br><b>PATH=C:\WINDOWS;C:\WINDOWS;C:\WINDOWS\COMMAND;C:\SUN\ADABAS\BIN;C:\SUN\ADABAS\PGM;C:\JDK1.3\BIN</b><br>windir=C:\WINDOWS<br>SNDSCAPE=C:\WINDOWS<br>BLASTER=A220 I7 D1 T2<br><b>CLASSPATH=c:\javafne\com\au\ui</b><br><br>******<br><br>Anybody got any ideas?&nbsp;&nbsp;The code compiles on another system w/o errs. <p> <br><a href=mailto:blindpete@mail.com>blindpete@mail.com</a><br><a href= > </a><br>
 
Check your CLASSPATH.

CLASSPATH=c:\javafne\com\au\ui

Shouldn't this be:

CLASSPATH=c:\javafne\com\au\fe\ui
 
I am having similar problems in that java can't find my package as well.

my package is called concrete.

I put it into my package directory c:\java\lib

CLASSPATH = c:\java\lib;.;c:\java
PATH = c:\pkzip;C:\jdk1.3\bin
(I am using winnt 4.0)

The odd thing is that I have two classes that are extended from a class located in the concrete directory and they also require classes that are in concrete/util/ . Here is the bizarre part, I can run the first class (both classes are stored in there own directories, seperate from each other) with no problems at all. But when I try to run the second class I get a similar error message to BlindPete. I know the classpath is set correctly otherwise the first class would give the same error. The only way that I can resolve the error is to copy the entire concrete directory to the second classes folder, then it works like it is supposed to.

Any ideas on this one...



As far as BlindPete's problem goes I would try rbobbitts recomendation (That was a good catch!)

(I know I should have started a seperate thread, but My problem seems similar to BlindPete's I figured that it would be better in this thread.)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top