File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Java in General and the fly likes Whats wrong here? 'PACKAGE' Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Whats wrong here? Watch "Whats wrong here? New topic
Author

Whats wrong here? 'PACKAGE'

Arul Jose
Ranch Hand

Joined: Jan 14, 2005
Posts: 131
I have put two classes in a package folder app.

The RegisterAction class is using the RegisterForm class. While compiling, the RegisterAction class is not able to identify the RegisterForm Class. why?


RegisterForm.java


RegisterAction.java
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35253
    
    7
Is the 'classes' directory in your classpath? If not, the class will not be found. Alternatively, do a "cd WEB-INF/classes" and start the compilation from there; then the class will be in the default classpath.


Android appsImageJ pluginsJava web charts
vidhyasagar reddy
Ranch Hand

Joined: Jul 05, 2005
Posts: 40
use javac *.java


if u want to compile individually means set classpath for that package
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Whats wrong here? 'PACKAGE'
 
Similar Threads
taglib in JSP not working in struts
Newbie Problems
Need help to understand the ActionServlet
Error in compilation.
Is UserDirectory a default class