Tagged Questions
0
votes
1answer
511 views
How are Java ByteBuffer's limit and position variable's updated?
There are two scenarios: writing and reading
Writing:
Whenever I write something to the ByteBuffer by calling its put(byte[]) method the position variable is incremented as: current position + size of ...
2
votes
2answers
422 views
Abstracting a zip as a filesystem - C++ [closed]
I would like to access in read and write mode to a zip without decompressing it on disk: what options do I have?
I need to perform the usual IO actions reserved for a filesystem like reading, writing ...