- 论坛徽章:
- 30
|
- import com.ericsson.otp.erlang.*;
- import java.util.*;
- class Client
- {
- public OtpConnection connection;
- public static void main(String[] args) throws Exception
- {
- Client a = new Client("a@LIUXI-L-1","XGBXRCHIAJJGKKAJNCWV");
- a.Top(args[0],args[1]);
- }
- public Client(String s,String cookie)
- {
- try
- {
- OtpSelf self = new OtpSelf("client","client");
- OtpPeer other = new OtpPeer(s);
- self.setCookie(cookie);
- connection = self.connect(other);
- }
- catch (Exception e)
- {
- System.out.println(e);
- }
- }
- public String Top(String s,String t) throws Exception
- {
- connection.sendRPC("erlang","time", new OtpErlangList());
- OtpErlangObject received = connection.receiveRPC();
- //String arr = received.toString().replace("[","").replace("]","");
- String arr = received.toString();
- System.out.println("(" + arr + ")");
- return "(" + arr + ")";
- }
- }
复制代码 |
|