我写的是远程登录到服务器的后端程序,运行一些命令并保存所有这些命令的输出。 东西就像期待。
我想用被很好的支持,并与JDK 6上运行的开源解决方案。
我已经找到了3个选项,到目前为止,并希望一些帮助决定哪一个(或更好的建议)来使用。
公共网 - 这是很好的支持,但遇到了麻烦一个简单的我“在日志和做‘ls’的”命令工作。 我更愿意使用这个库,如果任何人都可以提供一个简单的例子(而不是例如随之而来的是需要来自用户的输入),我想走这条路。
如果我不能使用公地网下两个选项:
JExpect - 这是不是很难使用,做什么,我需要的,但如何很好的支持呢? 它将与JDK 6的工作,我是这么认为的。
Java的远程登录应用程序(jta26) - 这是易于使用,但我不知道它是如何多才多艺。 我没有看到任何地方设置在TelnetWrapper的超时值。 我还不能肯定,如果自上次更新的网站是在2005年这个代码是维持( http://www.javassh.org )
我知道这是有点意见为本,希望这样的好地方,帮我做决定,所以我不开始往下一条道路,并找出后,它不是我要找的。
谢谢。
发现我一直在寻找在这里: http://twit88.com/blog/2007/12/22/java-writing-an-automated-telnet-client/
您将需要修改的提示变量。
代码复制:
import org.apache.commons.net.telnet.TelnetClient;
import java.io.InputStream;
import java.io.PrintStream;
public class AutomatedTelnetClient {
private TelnetClient telnet = new TelnetClient();
private InputStream in;
private PrintStream out;
private String prompt = "%";
public AutomatedTelnetClient(String server, String user, String password) {
try {
// Connect to the specified server
telnet.connect(server, 23);
// Get input and output stream references
in = telnet.getInputStream();
out = new PrintStream(telnet.getOutputStream());
// Log the user on
readUntil("login: ");
write(user);
readUntil("Password: ");
write(password);
// Advance to a prompt
readUntil(prompt + " ");
} catch (Exception e) {
e.printStackTrace();
}
}
public void su(String password) {
try {
write("su");
readUntil("Password: ");
write(password);
prompt = "#";
readUntil(prompt + " ");
} catch (Exception e) {
e.printStackTrace();
}
}
public String readUntil(String pattern) {
try {
char lastChar = pattern.charAt(pattern.length() - 1);
StringBuffer sb = new StringBuffer();
boolean found = false;
char ch = (char) in.read();
while (true) {
System.out.print(ch);
sb.append(ch);
if (ch == lastChar) {
if (sb.toString().endsWith(pattern)) {
return sb.toString();
}
}
ch = (char) in.read();
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
public void write(String value) {
try {
out.println(value);
out.flush();
System.out.println(value);
} catch (Exception e) {
e.printStackTrace();
}
}
public String sendCommand(String command) {
try {
write(command);
return readUntil(prompt + " ");
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
public void disconnect() {
try {
telnet.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
try {
AutomatedTelnetClient telnet = new AutomatedTelnetClient(
"myserver", "userId", "Password");
System.out.println("Got Connection...");
telnet.sendCommand("ps -ef ");
System.out.println("run command");
telnet.sendCommand("ls ");
System.out.println("run command 2");
telnet.disconnect();
System.out.println("DONE");
} catch (Exception e) {
e.printStackTrace();
}
}
}
你看的丧盾utils的图书馆 ? 我用过一次打开一个telnet会话到服务器并发送一些命令,读的响应,并关闭连接,它工作得很好,它是LGPL
尝试http://www.java2s.com/Code/Java/Network-Protocol/ExampleofuseofTelnetClient.htm 。
AutomatedTelnetClient
效果很好。 经过长时间的搜寻之后,很高兴看到一个简单的工作程序:)。
我只是修改提示$
和删除在最后的空白空间和工作的所有命令。