How can I find a package?
Posted
by Roman
on Stack Overflow
See other posts from Stack Overflow
or by Roman
Published on 2010-03-08T10:43:30Z
Indexed on
2010/03/08
11:06 UTC
Read the original article
Hit count: 306
In my code I have the following statement import com.apple.dnssd.*;
and compiler (javac) complains about this line. It writes that the package does not exist. But I think that it could be that "javac" search the package in a wrong place (directory). In this respect I have two questions:
How can I know where javac search for the packages?
I think that it is very likely that I have the above mentioned package but I do not know where it is located. What are the typical place to look for the packages?
© Stack Overflow or respective owner