| Author |
Regarding packages
|
ashish jadhav
Ranch Hand
Joined: Nov 20, 2008
Posts: 62
|
|
|
hello sir im doing work on one java application.in that application i created one datevalidator.java file in one package and authenticate.java in second package.when i run authenticate.java it unable to find datevalidator.class file for comparing dates.can you please tell me ho authenticate class automatically get datevalidator.obj file which is in other package.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
When you compile authenticate.java, you have to make sure that the package that contains class datevalidator is in the classpath. See The Java Tutorial: Packages for more information about using packages.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
ashish jadhav
Ranch Hand
Joined: Nov 20, 2008
Posts: 62
|
|
|
Thanks jesper.
|
 |
 |
|
|
subject: Regarding packages
|
|
|