| Author |
re AS400's CommandCall class in Java
|
Eung maeng
Ranch Hand
Joined: Feb 10, 2002
Posts: 68
|
|
Hi, I am trying to use CommandCall. however,i am getting error in compiling. please anyone can correct me. what should i import for CommandCall class? e.g import java.io.Serializable; import java.lang.Object; import com.ibm.as400.access.AS400; import com.ibm.as400.access.CommandCall; // <-----here error public class CommandCall extends java.lang.Object implements java.io.Serializable { public CommandCall() { // Work with commands on server named "Hal." AS400 system = new AS400("ibas4011"); CommandCall command = new CommandCall(system); }//end of public public static void main ( String args[]){ CommandCall commandCall = new CommandCall(); }// end of main class } please correct to me. thanks a lot,
|
 |
Bupjae Lee
Ranch Hand
Joined: May 14, 2007
Posts: 107
|
|
I think the reason of this error is 'ambiguous class name' Two class "com.ibm.as400.access.CommandCall" and (default package)"CommandCall" try to use same simple name "CommandCall", and the compiler complains about this fact.
|
 |
 |
|
|
subject: re AS400's CommandCall class in Java
|
|
|