About 8,020,000 results
Open links in new tab
  1. .net - What is a byte [] array? - Stack Overflow

    Jun 28, 2015 · A byte is 8 bits, and an array of byte, is an array of bytes... It really is that simple. The thing to keep in mind is that char and byte are different. In old C style, a char and byte …

  2. How do I initialize a byte array in Java? - Stack Overflow

    Jun 26, 2012 · In Java 6, there is a method doing exactly what you want: private static final byte[] CDRIVES = javax.xml.bind.DatatypeConverter.parseHexBinary ...

  3. c# - byte[] to hex string - Stack Overflow

    Mar 8, 2009 · How do I convert a byte[] to a string? Every time I attempt it, I get System.Byte[] instead of the value. Also, how do I get the value in Hex instead of a decimal?

  4. What's the difference between a word and byte? - Stack Overflow

    Oct 13, 2011 · The C++ standard defines ‘byte’ as “Addressable unit of data large enough to hold any member of the basic character set of the execution environment.” What this means is that …

  5. Difference between Big Endian and little Endian Byte order

    Jan 5, 2014 · Byte endianness (big or little) needs to be specified for Unicode/UTF-16 encoding because for character codes that use more than a single byte, there is a choice of whether to …

  6. Convert byte to string in Java - Stack Overflow

    Dec 28, 2011 · Because gustafc's answer has a very important point: String(byte[]) constructor uses the System default encoding to convert the byte array into String characters. One should …

  7. java - Byte [] to InputStream or OutputStream - Stack Overflow

    Jan 19, 2010 · so you end up with a byte[]. this could represent any kind of data which may need special types of conversions (character, encrypted, etc). let's pretend you want to write this …

  8. math - Converting bytes to megabytes - Stack Overflow

    I've seen three ways of doing conversion from bytes to megabytes: megabytes=bytes/1000000 megabytes=bytes/1024/1024 megabytes=bytes/1024/1000 Ok, I think #3 is totally wrong but I …

  9. java - What do we mean by Byte array? - Stack Overflow

    Oct 26, 2010 · A byte is 8 bits (binary data). A byte array is an array of bytes (tautology FTW!). You could use a byte array to store a collection of binary data, for example, the contents of a …

  10. How to convert byte[] to Byte[] and the other way around?

    Mar 23, 2020 · Step back. Look at the bigger picture. You're stuck converting byte[] to Byte[] or vice versa because of Java's strict type casing with something like this. List< Byte> or …