Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
public class myroutine {
public static void passGlobalVariableToRoutine(java.util.Map<String, Object> globalMap) {
globalMap.put("key", "shong");
}
}
myroutine.passGlobalVariableToRoutine(globalMap);
String s=(String)globalMap.get("key");
System.out.println(s);
Starting job test at 09:30 15/09/2011.
connecting to socket on port 3935
connected
shong
disconnected
Job test ended at 09:30 15/09/2011.