If I was to try to make a program that outputs .Flac files in Java, Flac-format, It appears that I would need to output values less than a byte. Is it even possible to output values less than a byte such as a nybble or a 5-bit number? Answer In the end I think I can do this using bit
Tag: dataoutputstream
How to send a valid result of an arithmetic operation through DataOutputStream
I have a subprocess class that calculate the sum of two integers and then put it in a DataOutputStream: when writing the two values of a and b like 12 and 47 respectivley the result is “ei”. In another hand the mainprocess won’t read that result like an DataInputStream through the ReadInt() line, and it throws an exception : Answer