The bytebuffer tag has no wiki summary.
0
votes
1answer
34 views
Record MIC sound into byte array in android
I'm trying to record from the MIC direcly to a short array.
The goal is not to write a file with the audio track, just save it within a short array.
If've tried several methods and the best I've ...
0
votes
1answer
49 views
Is there a way to create a direct ByteBuffer from a pointer solely in Java?
Or do I have to have a JNI helper function that calls env->NewDirectByteBuffer(buffer, size)?
0
votes
1answer
17 views
NIO byte Buffer has empty bytes when ready to read
I am writing an NIO server, right now to test I am connecting to myself, i have it written to where the client sends a handshake protocol and the server has to respond but when i try to read the ...
1
vote
0answers
32 views
How to expose raw byte buffers with Boost::Python?
I've got third party C++ library in which some class methods use raw byte buffers. I'm not quite sure how to deal in Boost::Python with it.
C++ library header is something like:
class CSomeClass
{
...
0
votes
1answer
33 views
Java nio partial read
My goal is to send different kind of messages from client to server, and it will be text based. The thing I am uncertain of is how to del with partial reads here. I will have to be sure that I get a ...
0
votes
1answer
37 views
Convert YBR_Full image to RGB in java
I could get the array of byte contains the YUV values and perform the same method in( Confusion on YUV NV21 conversion to RGB ) on it to get the array of int value represent RGB,and then i tried to ...
0
votes
0answers
42 views
Pass XML Marshalled data into a ByteBuffer
For a current project, I need to write XML data into a ByteBuffer to write the output XML in a binary format (.dat for example).
Is there a lib or class that will, for each java objects corresponding ...
0
votes
1answer
59 views
Export ByteBuffer as Little Endian File in Java
I want to Export a ByteBuffer as Little Endian into a file, but when I read in the file again I have to read it as Big Endian to get the right values. How can I export a ByteBuffer in a way that I can ...
0
votes
1answer
52 views
Determining Appropriate Buffer Size
I am using ByteBuffer.allocateDirect() to allocate some buffer memory for reading a file into memory and then eventually hashing that files bytes and getting a file hash (SHA) out of it. The input ...
3
votes
2answers
76 views
Writing out using a Bytebuffer returns differently from simple write out
I'm trying to write byte data to a file and part of optimizing it, I want to reduce the number of times I write out to the file.
Currently, I'm using:
try (RandomAccessFile out = new ...
0
votes
0answers
39 views
Writing Java Signature byte to little endian
I need to write signatures in little endian format.
Signature rsa= Signature.getInstance("SHA1withRSA","SunMSCAPI");
rsa.initSign(privateKey); //assuming privKey as private key
.. //buffer is ...
0
votes
3answers
59 views
Cannot extract correct information from message received through SocketChannel
I am sending a string which has been converted into bytes using a DataOutput stream
// creates a client socket which connects to the first successor's server.
Socket clientSocket = new Socket(host, ...
2
votes
0answers
32 views
Converting a byte array to a ushort array [duplicate]
I am new to C#, and I need to convert a large buffer stored in a byte[] array (an image) into a ushort[] array. The BitConverter.ToUInt16() method only does this one ushort at a time, so my first ...
-1
votes
1answer
53 views
Is ByteBuffer.getInt() blocking? [closed]
I'm willing to use a ByteBuffer to inter thread communication of JNI and C++. I couldn't find in the documentation whether ByteBuffer's getInt() is blocking or not. So, do I need to do something like:
...
0
votes
1answer
88 views
Bytebuffer in Java
I send long number via UDP.
LinkedQueue Q = new LinkedQueue<ByteBuffer>();
while (this._run) {
udp_socket.receive(packet);
if (packet.getLength() > 0) {
ByteBuffer ...
0
votes
1answer
177 views
Write DataOutputStream in ByteArray / ByteBuffer with “dynamic” size?
i ask myself if there is a nice solution for receiving data via TCP and reading the data in a DataInputStream and store the data in a bytearray of "dynamic" size. I thought about some solutions like ...
0
votes
1answer
43 views
NIO and visibility of ByteBuffers across threads
It seems that in implementing servers that rely on java nio, the following practice is standard:
Use a single thread (and a single selector) for reads:
ByteBuffer buffer = . . .
selector.select()
...
0
votes
0answers
91 views
How do I use PNGDecoder to decode a PNG file and then use it with a rectangle in LWJGL?
All of the code shown is written inside the same class, called "Run" inside the package "executable". I have the source code for the PNGDecoder in another package, called "helps".
Here is my ...
5
votes
1answer
128 views
Java MappedByteBuffer.isLoaded()
It seems to me that MappedByteBuffer.isLoaded() consistently returns false on Windows. When I test on say BSD Unix I get true using the same test data.
Should I worry?
I basically cannot get ...
2
votes
4answers
317 views
Reading a String from ByteBuffer without double buffering
Is there a way to construct a String from ByteBuffer without first reading contents from the buffer to a intermediate byte[] or char[]?
An API similar to the string constructor that takes a byte[] ...
0
votes
1answer
292 views
LibGDX Texture to ByteBuffer
I am trying to convert a Texture to a Pixmap in LibGDX so I can get all of the pixel data into a ByteBuffer for some experiments, and from what I can tell, I should be able to do this by doing the ...
0
votes
0answers
105 views
FileChannel Map Failed
I'm practicing on Java nio and I created a program to find prime numbers.
On running the program, It finds N new prime numbers starting from the last prime stored in a file and it appends the new ...
7
votes
2answers
196 views
byte[] to ushort[]
Here is my questions. Bear with me giving a little explanation:
I am reading tiff image into buffer; Each pixel of my tiff is represented by a ushort (16 bits data, non-negtive)
My image size is ...
0
votes
1answer
91 views
BufferUnderflowException
In a Bluetooth app , i'm receiving data from a external device in byte[].
then putting data into ByteBuffer for further use
like shown below
ByteBuffer localByteBuffer = null;
byte[] ...
2
votes
1answer
572 views
How to use ByteBuffer in the MediaCodec context in android
So far I am able to setup a MediaCodec to encode a video stream. The aim is to save my user generated artwork into a video file.
I use android Bitmap objects of the user artwork to push frames into ...
1
vote
1answer
102 views
transmit strings through ByteBuffer
I need to transmit 2 integers and one string through a bytebuffer. And then receive another string through bytebuffer.
There must be something like this:
Read x (int) from keyboard.Enter. Read y ...
1
vote
2answers
511 views
What is the purpose of ByteBuffer's flip method? (And why is it called “flip”?)
Why does ByteBuffer's flip() method called "flip"? What is "flipped" here? According to apidoc, two successive flips won't restore original state, and multiple flips will probably tend limit() to ...
1
vote
5answers
554 views
How to convert a String array to a Byte array? (java)
I have a one dimensional String array that I want to convert into a one dimensional byte array. How do I do this? Does this require ByteBuffer? How can I do this? (The strings can be any length, just ...
2
votes
2answers
160 views
Need help understanding int array to byte array method and Little/Big Endian wondering?
Have a couple questions, first on this method, which converts an int[] to a byte[]:
public static byte[] intToByte(int[] input){
ByteBuffer byteBuffer = ByteBuffer.allocate(input.length * 4);
...
1
vote
1answer
222 views
How write big endian ByteBuffer to little endian in Java
I currently have a Java ByteBuffer that already has the data in Big Endian format. I then want to write to a binary file as Little Endian.
Here's the code which just writes the file still in Big ...
1
vote
3answers
79 views
Byte buffer exception for strings of length less than 4
I am trying to convert Strings to their integer equivalents for faster comparison using ByteBuffer (java.nio.ByteBuffer).
I got a very peculiar exception using ByteBuffer.
public class LargeCompare ...
0
votes
0answers
220 views
Json to Csv Java NIO bytebuffer compact() wont get all records
I am trying to parse a json file into a csv. using my small test json file I was able to get all the fields out nicely but when I stepped upto my 1.8 gig file it stopped working (I was loading the ...
-4
votes
3answers
169 views
C# version of 2 Java methods with ByteBuffer [closed]
I am new in C# and I will really appreciate some help about 2 Java methods I need to implement in C#
public static String getTerminatedString(ByteBuffer buf) {
return new ...
0
votes
1answer
91 views
ImageIO faster than GZIPStream at max speed
I am looking for the fastest way to download an image from the GPU to a file, for later loading in the same application (so not necessarily PNG e.g.).
I noticed however that when I use a ...
0
votes
0answers
45 views
Java - How to decode a theora video into a ByteBuffer
For my game engine I want to be able to display videos of textures. At the moment I'm trying to get theora to work. I don't want to use huge libries.
I found that there is Jheora, a package from ...
0
votes
1answer
116 views
Using a single ByteBuffer with multiple arrays in OpenGL
In my application, I'm having to draw multiple elements with OpenGL, some are Triangles and others are Line Strips. I'm putting my vertices into multiple float[] and my indices into multiple short[] ...
0
votes
2answers
72 views
Equivalent of DataOutputStream.readBoolean and DataOutputStream.writeBoolean for ByteBuffer?
How can I do something like ByteBuffer.putBoolean and ByteBuffer.getBoolean?
As with DataInputStream there is readBoolean and with DataOutputStream there is writeBoolean; I don't find the ability to ...
2
votes
1answer
74 views
How do I achieve better granularity when performing streaming operations?
Okay so I'm working on my file transfer service, and I can transfer the files fine with WCF streaming. I get good speeds, and I'll eventually be able to have good resume support because I chunk my ...
1
vote
1answer
182 views
ByteBuffer to String in GWT
On a PlayN project I have the following Java code
import com.google.common.base.Charsets;
import java.nio.ByteBuffer;
ByteBuffer msg = ... // a ByteBuffer that contains a String
String s = ...
9
votes
1answer
150 views
Am I doing this correctly?
Before I ask for help, let me tell you what I did:
Assuming I have a sampling rate of 8000Hz and sample size of 16 bits (2 bytes), at the end of the second I need 16000 byte or 8000 short.
Now I ...
0
votes
1answer
150 views
Java NIO SocketChannel read pre-defined bytes number
I have a Java NIO socket server.
The server is getting JSONObjects from remote clients.
i'm using the SocketChannel.read(ByteBuffer) method in order to read from the channel.
each message ends with ...
0
votes
2answers
194 views
ByteBuffer.allocateDirect(size) is not creating backing byte[] in Android 2.2 emulator
I'm new to android. I can't seem to find pertinent forum posts.
What has me stumped is that allocateDirect() does create the backing byte[] in Android 4.2 emulator.
More specifically, I ...
0
votes
2answers
134 views
Bytes in Java with hex
buffer is a bytebuffer .I'm getting a lost of percision error with this.
byte myPort = buffer.get(0); // Might need to change this depending on byte order
switch(myPort){
case 0xF1: ...
0
votes
1answer
109 views
max size of java.nio.MappedByteBuffer [closed]
I just want to make sure the max size of MappedByteBuffer is Integer.MAX_VALUE and there is no way to create a buffer of size 0x80000000. Although the index within this range can be represented by a ...
0
votes
6answers
201 views
Converting String to bytes in java [duplicate]
Possible Duplicate:
Convert a string representation of a hex dump to a byte array using Java?
I want to convert String "1B4322C2" in to bytes but problem is if I use getBytes() it will ...
0
votes
1answer
40 views
Reading fields from bytearray
I am trying to send a message via tcp. Unfortunately that does not work and hence I have created the following code for test purposes:
public void sendQuestion(String text) {
// Set ...
26
votes
8answers
1k views
C/C++ Why to use unsigned char for binary data?
Is it really necessary to use unsigned char to hold binary data as in some libraries which work on character encoding or binary buffers? To make sense of my question, have a look at the code below -
...
0
votes
1answer
111 views
How to write and read a string property in a Java Object from a file with FileChannel and ByteBuffer
Following is a sample class showing how I put String into ByteBuffer. I am able to write String to a file like this, but I am not sure how can I know the size of byte array to read the title back ...
1
vote
1answer
375 views
ByteBuffer Little Endian insert not working
I have to make a two way communication between a legacy system and an android device.
The legacy system uses little endian byte ordering.
I have successfully implemented the receiving part, however ...
0
votes
1answer
87 views
StreamCorruptedException while reading an Object from ByteBuffer
I am using a java NIO Datagram Channel(in blocking mode). I want to transmit an object from one side to the other. This is what I do on the Sender Side:
ByteArrayOutputStream baos = new ...







