Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
16k views

Java: Converting String to and from ByteBuffer and associated problems

I am using Java NIO for my socket connections, and my protocol is text based, so I need to be able to convert Strings to ByteBuffers before writing them to the SocketChannel, and convert the incoming ...
10
votes
5answers
476 views

Can multiple threads see writes on a direct mapped ByteBuffer in Java?

I'm working on something that uses ByteBuffers built from memory-mapped files (via FileChannel.map()) as well as in-memory direct ByteBuffers. I am trying to understand the concurrency and memory ...
10
votes
3answers
2k views

Why the odd performance curve differential between ByteBuffer.allocate() and ByteBuffer.allocateDirect()

I'm working on some SocketChannel-to-SocketChannel code which will do best with a direct byte buffer--long lived and large (tens to hundreds of megabytes per connection.) While hashing out the exact ...
8
votes
4answers
190 views

how can I subclass ByteBuffer?

So the Java NIO architects didn't make a ByteBuffer interface, but rather a ByteBuffer class, which isn't a final class, but it has no package-public constructors, and therefore it can't be subclassed ...
8
votes
2answers
8k views

converting Java bitmap to byte array

Bitmap bmp = intent.getExtras().get("data"); //from camera int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); byte[] bytes = new ...
7
votes
7answers
1k views

Extending ByteBuffer class

Is there any way to create class that extends ByteBuffer class? Some abstract methods from ByteBuffer are package private, and if I create package java.nio, security exception is thrown. I would ...
7
votes
1answer
3k views

How to put the content of a ByteBuffer into an OutputStream?

I need to put the contents of a java.nio.ByteBuffer into an java.io.OutputStream. (wish I had a Channel instead but I don't) What's the best way to do this? I can't use the ByteBuffer's array() ...
6
votes
4answers
340 views

Java ByteBuffer performance issue

While processing multiple gigabyte files I noticed something odd: it seems that reading from a file using a filechannel into a re-used ByteBuffer object allocated with allocateDirect is much slower ...
6
votes
1answer
4k views

Difference between ByteBuffer.allocateDirect() and MappedByteBuffer.load()

I was trying to implement a sort of shared cache between two or more JVMs by memory mapping a particular file using MappedByteBuffer. From the specifications I see that when we use ...
5
votes
3answers
401 views

Is Java Native Memory Faster than the heap?

I'm exploring options to help my memory-intensive application, and in doing so I came across Terracotta's BigMemory. From what I gather, they take advantage of non-garbage-collected, off-heap "native ...
5
votes
5answers
991 views

How to fill byte array with junk?

I am using this: byte[] buffer = new byte[10240]; As I understand this initialize the buffer array of 10kb filled with 0s. Whats the fastest way to fill this array (or initialize it) with junk ...
5
votes
1answer
3k views

What is the Java equivalent of .NET BitConverter?

I was writing an article in which I wanted to show how to send objects across the network, from Java to CLR/.Net and Back. ...
5
votes
3answers
5k views

Gets byte array from a ByteBuffer in java

Is this the recommended way to get the bytes from the ByteBuffer ByteBuffer bb =.. byte[] b = new byte[bb.remaining()] bb.get(b, 0, b.length);
4
votes
2answers
115 views

Java Read File Larger than 2 GB (Using Chunking)

I'm implementing a file transfer server, and I've run into an issue with sending a file larger than 2 GB over the network. The issue starts when I get the File I want to work with and try to read its ...
4
votes
2answers
159 views

Get the pointer of a Java ByteBuffer though JNI

How can I get a pointer to the inner array of a Java ByteBuffer? JNIEXPORT void JNICALL test(JNIEnv *env, jobject thiso) { jclass cls = env->FindClass("java/nio/ByteBuffer"); jmethodID ...
4
votes
2answers
723 views

What is the use of ByteBuffer in Java?

What ByteBuffer functions are used for application in Java? Please list any example scenarios where this is used. Thank you!
4
votes
2answers
2k views

JNI - native method with ByteBuffer parameter

I've got a method: public native void doSomething(ByteBuffer in, ByteBuffer out); Generated by javah C/C++ header of this method is: JNIEXPORT void JNICALL Java__MyClass_doSomething (JNIEnv *, ...
4
votes
5answers
3k views

C++ equivalent of Java ByteBuffer?

I'm looking for a C++ "equivalent" of Java ByteBuffer. I'm probably missing the obvious or just need an isolated usage example to clarify. I've looked through the iostream family & it looks like ...
3
votes
3answers
100 views

Is there an explanation for the behavior of this Java ByteBuffer?

I need to convert numerical values into byte arrays. For example, to convert a long to a byte array, I have this method: public static byte[] longToBytes(long l) { ByteBuffer buff = ...
3
votes
1answer
173 views

Java/Android - Fast ByteBuffer Parsing

i'm writing a webserver for mobile android based devices in java. This webserver is single-threaded and follow the idea behind nginx, node.js and similar: don't spawn multiple threads just use async ...
3
votes
4answers
260 views

Are Java DirectByteBuffer wrappers garbage collected?

I understand that when a directbytebuffer is allocated, its not subject to garbage collection, but what I'm wondering is if the wrapping object is garbage collected. For example, if I allocated a new ...
3
votes
2answers
2k views

ByteBuffer not releasing memory

On Android, a direct ByteBuffer does not ever seem to release its memory, not even when calling System.gc(). Example: doing Log.v("?", Long.toString(Debug.getNativeHeapAllocatedSize())); ByteBuffer ...
3
votes
1answer
321 views

Casting a primitive vs. trimming it byte-way

I would like to ask for opinions/advices regarding a a part of my algorithm. ByteBuffer bb = ByteBuffer.allocate(8); bb.putLong(rs.getLong(index));//retrieve long from db (unsigned INT) byte[] tmp = ...
3
votes
2answers
865 views

Are the ByteBuffer/IntBuffer/ShortBuffer Java classes fast?

I'm working on an Android application (in Java, obviously) and I recently updated my UDP reader code. In both versions, I set up some buffers and receive a UDP packet: byte[] buf = new byte[10000]; ...
3
votes
3answers
652 views

How to put data from an OutputStream into a ByteBuffer?

In Java I need to put content from an OutputStream (I fill data to that stream myself) into a ByteBuffer. How to do it in a simple way?
3
votes
2answers
468 views

Java: Using type punning on primitive arrays?

I need to be able to convert byte arrays to/from other primitive type arrays, but instead of casting, I need type punning. Correct term for raw copy without casting? I thought it would be possible to ...
3
votes
6answers
2k views

Growing ByteBuffer

Has anyone has ever seen an implementation of java.nio.ByteBuffer that will grow dynamically if a putX() call overruns the capacity? The reason I want to do it this way is twofold: 1) I don't know ...
2
votes
4answers
53 views

Find a string inside a bytebuffer

I'm switching from C to Java. I'm wondering about how to find a string inside a bytebuffer, is there something like memchr in java? The bytebuffer is only partly a string, the rest is raw bytes so any ...
2
votes
2answers
72 views

Java : Extending from ByteBuffer

Java will not allow me to extend from ByteBuffer because it implements abstract methods that I am not overriding, yet these methods work for any ByteBuffer objects that are created, such as ...
2
votes
2answers
50 views

I/O Operation On Channels Using ByteBuffer - Performance Comparision

I want to perform I/O operation on channels using ByteBuffer. Finally I came up with three solutions: FileChannel inChannel = new FileInputStream("input.txt").getChannel(); FileChannel outChannel = ...
2
votes
2answers
101 views

java data types to byte array

I have a Java class public class MsgLayout{ int field1; String field2; long field3; } I have to write this object as a byte array in a Socket output stream. The three fields (instance variables) ...
2
votes
1answer
114 views

FileChannel.write on Linux produces lots of garbage, but not on Mac

I am trying to limit the amount of garbage produced by my log library, so I coded a test to show me how much memory is FileChannel.write creating. The code below allocates ZERO memory on my Mac, but ...
2
votes
1answer
85 views

How to convert byte[] to bytebuffer native memory?

I need pass a large amount memory to jni side to parse it. I used GetByteArrayElements to get the native pointer before.but i found this method is always copy the memory,not using the memory directly. ...
2
votes
2answers
142 views

How do you get successive slices out of a ByteBuffer?

I have a ByteBuffer that contains a large file (100 MB): java.nio.ByteBuffer byteBuffer = ByteBuffer.wrap(multipartFile.getBytes()); writeChannel.write(byteBuffer); ...
2
votes
3answers
202 views

Java XML parsing

I have a file that has several XML documents like below in sequence. <?xml version="1.0"?><Node>...<Node>...</Node>...</Node><?xml version... which repeats several ...
2
votes
3answers
367 views

Fast ByteBuffer to CharBuffer or char[]

What is the fastest method to convert a java.nio.ByteBuffer a into a (newly created) CharBuffer b or char[] b. By doing this it is important, that a[i] == b[i]. This means, that not a[i] and a[i+1] ...
2
votes
4answers
2k views

ByteBuffer.allocate() vs. ByteBuffer.allocateDirect()

To allocate() or to allocateDirect(), that is the question. Hi. For some years now I've just stuck to the thought that since DirectByteBuffers are a direct memory mapping at OS level, that it would ...
2
votes
2answers
246 views

Alternatives to ByteBuffers for a low-level UDP messaging system

I'm working on a low-level UDP messaging layer for an encrypted P2P architecture, if interested you can read more about it on its github page. I've built a neat serialization framework that turns ...
2
votes
1answer
135 views

How to properly write a UDP packet

I am trying to rewrite some of my code from a C++ program I wrote a while ago, but I am not sure if/how I can write to a byte array properly, or if I should be using something else. The code I am ...
2
votes
3answers
817 views

Wrapping a ByteBuffer with an InputStream

I have a method that takes an InputStream and reads data from it. I would like to use this method with a ByteBuffer also. Is there a way to wrap a ByteBuffer so it can be accessed as a stream?
2
votes
2answers
279 views

Could ByteBuffer implement DataOutput/DataInput?

Is there some subtle reason why java.nio.ByteBuffer does not implement java.io.DataOutput or java.io.DataInput, or did the authors just not choose to do this? It would seem straightforward to map the ...
2
votes
3answers
671 views

How to serialize ByteBuffer

I wish to send a java.nio.ByteBuffer accross a network using RMI, however ByteBuffer isn't serializable. I've tried the following custom class to no avail: public class NetByteBuffer implements ...
2
votes
5answers
2k views

Deep copy duplicate() of Java's ByteBuffer

java.nio.ByteBuffer#duplicate() returns a new byte buffer that shares the old buffer's content. Changes to the old buffer's content will be visible in the new buffer, and vice versa. What if I want a ...
2
votes
1answer
297 views

Which JVMs do not support direct java.nio.ByteBuffer?

The release notes for Java NIO (in Java 1.4+) state that support for direct ByteBuffers is an optional feature. I am curious which JVM vendors/flavors do not support it? Should a JNI library always ...
2
votes
3answers
3k views

How to initialize a ByteBuffer if you don't know how many bytes to allocate beforehand?

Is this: ByteBuffer buf = ByteBuffer.allocate(1000); ...the only way to initialize a ByteBuffer? What if I have no idea how many bytes I need to allocate..? Edit: More details: I'm converting ...
2
votes
1answer
1k views

Is it possible to read the Process stdout InputStream into an NIO ByteBuffer?

Is it possible to use NIO to process the stdout from a Process? I have it working with java.io, but this is something of an exercise to learn a bit more about NIO and to explore the possibility of ...
2
votes
6answers
3k views

How to avoid OutOfMemoryError when using Bytebuffers and NIO?

I'm using ByteBuffers and FileChannels to write binary data to a file. When doing that for big files or successively for multiple files, I get a OutOfMemoryError exception. I've read elsewhere that ...
1
vote
2answers
68 views

Why does ByteBuffer.getFloat return 0.0?

ByteBuffer byteBuffer is received over a TCP/IP connection, is visible in the NetBeans emulator, and contains 0x2b, 0x69, 0x80, and 0x3f in bytes 4, 5, 6, and 7 for this break. If the endianess is ...
1
vote
1answer
28 views

Hadoop Throughs ClassCastException for the keytype of java.nio.ByteBuffer

I am using "hadoop-0.20.203.0rc1.tar.gz" for my cluster setup. Whenever I set job.setMapOutputKeyClass(ByteBuffer.class); and run the job I get following Exception: 12/01/13 15:09:00 INFO ...
1
vote
4answers
160 views

Prevent OutOfMemory when using java.nio.MappedByteBuffer

Consider application, which create 5-6 threads, each thread in cycle allocate MappedByteBuffer for 5mb page size. MappedByteBuffer b = ch.map(FileChannel.MapMode.READ_ONLY, r, 1024*1024*5); Sooner ...

1 2 3