[Tcl Java] byte array

1999-08-12 Thread Suvarna Ayyagari
Hi, I want to create a byte array using tclblend.The array may contain values from 00 to FF in Java I would do it as follows, byte b[] = { (byte) 0xFF ,(byte) 0x80}; Can you please tell me how to implement this in tclblend ? For values less than 7F I have no problems I say set x [java::new

[Tcl Java] Re: byte array (please read!)

1999-08-12 Thread Moses DeJong
On Thu, 12 Aug 1999, Suvarna Ayyagari wrote: > Hi, > > I want to create a byte array using tclblend.The array may contain values > from 00 to FF > > in Java I would do it as follows, > > byte b[] = { (byte) 0xFF ,(byte) 0x80}; > > Can you please tell me how to implement this in tclblend ? >