Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k views

Why do I get a java.nio.BufferUnderflowException in this Scala

I was trying to do some scripting in Scala, to process some log files: scala> import io.Source import io.Source scala> import java.io.File import java.io.File scala> val f = new File(".") ...
2
votes
1answer
773 views

java.nio.BufferUnderflowException when processing files in Scala

I got a similar problem to this guy while processing 4MB log file. Actually I'm processing multiple files simultaneously but since I keep getting this exception, I decide to just test it for a single ...
1
vote
2answers
322 views

BufferUnderflowException? Here?

I am writing a small UDP server in Java. When the server receives a command ('GET_VIDEO'), he reads a file ('video.raw') and then sends it to the client. Here is my code : public class ...
1
vote
3answers
282 views

How to convert a byte array to two long?

I'm reading a 16 byte array (byte[16]) from a JDBC ResultSet with rs.getBytes("id") and now I need to convert it to two long. How can I do that? This is the code I have tested with, but I probably ...