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

    Jun 28, 2015 · 21 In .NET, a byte is basically a number from 0 to 255 (the numbers that can be represented by eight bits). So, a byte array is just an array of the numbers 0 - 255. At a lower …

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

    Jun 26, 2012 · I have to store some constant values (UUIDs) in byte array form in java, and I'm wondering what the best way to initialize those static arrays would be. This is how I'm currently …

  3. Convert integer into byte array (Java) - Stack Overflow

    Dec 20, 2009 · what's a fast way to convert an Integer into a Byte Array? e.g. 0xAABBCCDD => {AA, BB, CC, DD}

  4. Can endianness refer to the order of bits in a byte?

    Endianness and byte order When a value larger than byte is stored or serialized into multiple bytes, the choice of the order in which the component bytes are stored is called byte order, or …

  5. byte and ambiguous symbol due to using declarations?

    Jul 16, 2017 · The program above has competing definitions of byte due to std::byte, CryptoPP::byte and the using namespace .... As I said, I know it leaves something to be desired.

  6. Byte Array and Int conversion in Java - Stack Overflow

    Mar 23, 2011 · encodedValue[1] = (byte) (value >> Byte.SIZE); encodedValue[0] = (byte) value; return encodedValue; } Just reverse the byte array index to count from zero to three to create …

  7. Java Byte Array to String to Byte Array - Stack Overflow

    To convert your response string back to the original byte array, you have to use split(",") or something and convert it into a collection and then convert each individual item in there to a …

  8. 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 …

  9. Converting string to byte array in C# - Stack Overflow

    Apr 18, 2013 · If you already have a byte array then you will need to know what type of encoding was used to make it into that byte array. For example, if the byte array was created like this:

  10. 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?