| Author |
how to Import a program from another folder
|
saravanan rajendran
Ranch Hand
Joined: Jun 13, 2008
Posts: 75
|
|
hi, i have 2 program in different folder program1.java exists in below folder /usr/local/apache-tomcat/webapps/Asianet/WEB-INF/classes/com/example/servlets/program1 program1.java program2.java exists in below folder /usr/local/apache-tomcat/webapps/Asianet/WEB-INF/classes/com/example/program2 Error: package com.example.servlets does not exist import com.example.servlets.*; ^ i getting above error i cannot find what error guide me [edit]Add code tags. CR[/edit] [ August 19, 2008: Message edited by: Campbell Ritchie ]
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
Set the classpath to include the folder where your "com" folder is located. That would be /usr/local/apache-tomcat/webapps/Asianet/WEB-INF/classes in your case.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32675
|
|
As Rob says, you need to include the folder in the classpath, probably best done with the -cp option on javac and java. Go to this documentation page and click on "javac" and "java" for more details. And please find the Code Tags; I have added them to your post so you can see how much easier it is to read.
|
 |
 |
|
|
subject: how to Import a program from another folder
|
|
|