RCPTT running Java code from the script
问题 I am looking for some way to run some Java code directly from the test script I am writing for our RCP application. I need to set up a multi-cast socket in the test before clicking a particular button in the application. Something like this: MulticastSocket socket = new MulticastSocket(); socket.setNetworkInterface(interfaceTarget); InetAddress group = InetAddress.getByName("220.2.2.2"); socket.joinGroup(group); I was unable to find any way to do this just wondering if this is possible? 回答1: