How would I do the following in Java?
sw.Write(Convert.ToInt16(100));
I've tried:
sw.writeShort(100);
But it seems to order the bits wrong.
Thanks,
Scott
Printable View
How would I do the following in Java?
sw.Write(Convert.ToInt16(100));
I've tried:
sw.writeShort(100);
But it seems to order the bits wrong.
Thanks,
Scott
I am guessing you are using the StreamWriter class in C#, what class have you chosen to use in your Java code?