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.

Using a byte array as Map key

Do you see any problem with using a byte array as Map key? I could also do new String(byte[]) …

java hashmap bytearray
Android: Bitmap to Byte Array and back: SkImageDecoder::Factory returned null

The goal is to convert a Bitmap to a byte [], pass it between activities in a Bundle of data, then …

java android bitmap bytearray android-imageview
How can I safely convert a byte array into a string and back?

I don't really care about encoding and stuff, as long as I get back the exact same byte array. So …

c# string bytearray
How to convert byte array to MultipartFile

I am receiving image in the form of BASE64 encoded String(encodedBytes) and use following approach to decode into byte[] …

spring-mvc bytearray multipart
Save byte array in sql server

Am looking to use an approach in saving passwords that requires using byte array as in this post So which …

sql-server bytearray sqlcommand
C Function to Convert float to byte array

I'm trying to make a function that will accept a float variable and convert it into a byte array. I …

c casting floating-point arduino bytearray
In C#, how can I know the file type from a byte[]?

I have a byte array filled from a file uploaded. But, in another part of the code, I need to …

asp.net-mvc c#-3.0 bytearray content-type
Error" Parameter is not valid " while converting Bytes into Image

I am converting bytes into an image but I get an error Parameter is not valid I am pasting my …

c# .net image bytearray memorystream
How do I convert an array of floats to a byte[] and back?

I have an array of Floats that need to be converted to a byte array and back to a float[]... …

c# .net floating-point bytearray endianness
How to read a file as a byte array in Scala

I can find tons of examples but they seem to either rely mostly on Java libraries or just read characters/…

scala io bytearray