You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Hi;
Is it possible to pass byte[] variables between subjobs using context.. Or is there a different way to do it.. Converting it to string than back to byte[] does not produce the same byte[] value..
I will be running the subjob using iterate (parallel) so i have to pass that byte[] value..
Regards
Fatih Kutlay
Offline
Hi
Define a context variable with object type, for example:
String foo = "bar";
byte [] b=foo.getBytes();
context.new1=b;
byte [] b1=(byte []) context.new1;
Best regards
Shong
Offline
Pages: 1