All,
Please let me know how do I inovke Telnet prompt via
Java code using apache commons net jar .
I have done the following code
String command = "cmd /c start cmd.exe /K \"telnet <ip-address> \"";
Process process = Runtime.getRuntime().exec(command);
It works fine for 64 bit JRE with 64 bit Telnet client(Win 7 64 bit OS)
But it fails while i use 32 bit jre..
How do i achieve the 364 bit telnet client via 32 bit JRE
I read in the posts it can be done using Apache commons class..