Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
context.setProperty("myContextName", "ContextValue");
context.myContextName = "ContextValue";
context.setProperty("count2",Integer.toString((Integer)globalMap.get("tFileRowCount_2_COUNT")));
context.count2 = ((Integer)globalMap.get("tFileRowCount_2_COUNT"))
context.setProperty("count2",Integer.toString((Integer)globalMap.get("tFileRowCount_2_COUNT")));
context.synchronizeContext();
if(((Integer)globalMap.get("tFileInputExcel_1_NB_LINE")).intValue()==((Integer)globalMap.get("tMysqlOutput_1_NB_LINE")).intValue()){
System.out.println("Rows match");
}else{
System.out.println("Rows do not match");
}