Applet | JTA - Telnet/SSH for the JAVA(tm) platform: Applet
This is the implementation of whole set of applications. |
Build | |
Common | The common part of the JTA - Telnet/SSH for the JAVA(tm) platform
is handled here. |
Help | Help display for JTA. |
Main | JTA - Telnet/SSH for the JAVA(tm) platform
This is the implementation of whole set of applications. |
Plugin | Plugin base class for the JTA. |
PluginConfig | Plugin configuration container. |
PluginLoader | The plugin loader tries to load the plugin by name and returns a
corresponding plugin object. |
SmallApplet | Small Telnet Applet implementation
Maintainer: Matthias L. |
Wrapper | To write a program using the wrapper
you may use the following piece of code as an example:
TelnetWrapper telnet = new TelnetWrapper();
try {
telnet.connect(args[0], 23);
telnet.login("user", "password");
telnet.setPrompt("user@host");
telnet.waitfor("Terminal type?");
telnet.send("dumb");
System.out.println(telnet.send("ls -l"));
} catch(java.io.IOException e) {
e.printStackTrace();
}
Please keep in mind that the password is visible for anyone who can
download the class file. |