Top "Bytearray" questions

An array is an ordered linear data structure consisting of a collection of elements (values, variables, or references), each identified by one or more indexes.

Android/Java: Saving a byte array to a file (.jpeg)

I am developing an application for Android, and part of the application has to takes pictures and save them to …

android bytearray jpeg android-camera
Android - Playing mp3 from byte[]

I have my mp3 file in byte[] (downloaded from an service) and I would like to play it on my …

android bytearray mp3 audio-player
How to use high and low bytes?

I am trying to represent 32768 using 2 bytes. For the high byte, do I use the same values as the low …

c++ byte bytearray bit 16-bit
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 …

java bytearray converter bytebuffer arrays
send byte array by HTTP POST in store app

I'm trying to send some images + some meta data to a server by HTTP post from a windows store app …

c# http windows-store-apps bytearray
BufferedReader directly to byte[]

is there any possibility my following BufferedReader is able to put the input directly into a byte[]? public static Runnable …

java sockets bytearray inputstream bufferedreader
Java: Memory efficient ByteArrayOutputStream

I've got a 40MB file in the disk and I need to "map" it into memory using a byte array. …

java bytearray memory-mapped-files bytearrayoutputstream
convert array of bytes to bitmapimage

I'm going to convert array of bytes to System.Windows.Media.Imaging.BitmapImage and show the BitmapImage in an image …

c# wpf bytearray bitmapimage
Byte Array to NSData

In a WebService JSON response is coming. In the response, there is image is coming as a byte array. I …

iphone ios objective-c bytearray nsdata
Getting upper and lower byte of an integer in C# and putting it as a char array to send to a com port, how?

In C I would do this int number = 3510; char upper = number >> 8; char lower = number && 8; SendByte(upper); …

c# char bytearray bit-shift bitmask