Re: pass compressed string

2011-02-23 Thread Andi Vajda
On Thu, 24 Feb 2011, Roman Chyla wrote: I would like to transfer results from python to java: hello = zlib.compress("hello") on the java side do: byte[] data = string.getBytes() But I am not successful. Is there any translation going on somewhere? Can you be more specific ? Actual lines o

pass compressed string

2011-02-23 Thread Roman Chyla
Hello, I would like to transfer results from python to java: hello = zlib.compress("hello") on the java side do: byte[] data = string.getBytes() But I am not successful. Is there any translation going on somewhere? Thank you, Roman