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

I have made a directory called "middle" and inside it another directory called "tier" and inside the "tier" directory are OrderManager.java which is an interface and OrderManagerImpl.java having its implementation.

The problem is when I try to compile OrderManagerImpl.java from outside the package middle.tier it compiles but when I do the same inside the package it gives me the following error:

OrderManagerImpl.java:6: cannot find symbol
symbol: class OrderManager
public class OrderManagerImpl extends java.rmi.server.UnicastRemoteObject implements OrderManager{

Why is it so?

share|improve this question

1 Answer

up vote 8 down vote accepted

Because the compiler expects to find your class inside the proper folder: ./middle/tier . When you try to compile inside the package, the compiler search for your class in ./middle/tier/middle/tier

share|improve this answer
i thought that compiler serches the classpath which includes the current directory – Neal May 21 '09 at 16:12
Yes, so it will search the current directory for middle.tier.OrderManager, which means it looks for a directory called "middle" with a subdirectory called "tier" - all under the current directory. – Jon Skeet May 21 '09 at 16:14
thank you i got it – Neal May 21 '09 at 16:17

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.