A byte is usually, but not always, 8 bits.
73
votes
19answers
107k views
Convert a string representation of a hex dump to a byte array using Java?
I am looking for a way to convert a long string (from a dump), that represents hex values into a byte array.
I couldn't have phrased it better than the person that posted the same question here:
...
29
votes
6answers
18k views
Getting the size of a field in bytes with C#
I'm having a class which I want to inspect it's fields, and report eventually how much bytes does each field take. I assume all fields are of types as Int32, byte etc.
How can I find out easily how ...
28
votes
4answers
23k views
#1071 - Specified key was too long; max key length is 767 bytes
When I executed the following command:
ALTER TABLE `mytable` ADD UNIQUE (
`column1` ,
`column2`
);
I got this error message:
#1071 - Specified key was too long; max key length is 767 bytes
...
12
votes
7answers
3k views
How to check the number of bytes consumed by my structure?
If I am creating a relatively large structure, how can I calculate the bytes it occupies in memory?
We can do it manually, but if the struct is large enough then how do we do it? Is there some code ...
42
votes
8answers
59k views
Java integer to byte array
I got an integer: 1695609641
when I use method:
String hex = Integer.toHexString(1695609641);
system.out.println(hex);
gives:
6510f329
but I want a byte array:
byte[] bytearray = new byte[] ...
23
votes
4answers
39k views
Convert integer into byte array (Java)
since Java doesn't provide a default way to do this,
what's a fast way to convert an Integer into a Byte Array?
e.g. 0xAABBCCDD => {AA, BB, CC, DD}
32
votes
8answers
3k views
System where 1 byte != 8 bit?
All the time I read sentences like
don't rely on 1 byte being 8 bit in size
use CHAR_BIT instead of 8 as a constant to convert between bits and bytes
et cetera. What real life systems are ...
32
votes
7answers
15k views
What is the best way to work around the fact that ALL Java bytes are signed?
In Java, there is no such thing as an unsigned byte.
Working with some low level code, occasionally you need to work with bytes that have unsigned values greater than 128, which causes Java to ...
17
votes
7answers
73k views
Java Byte Array to String to Byte Array
I'm trying to understand a byte[] to string, string representation of byte[] to byte[] conversion... I convert my byte[] to a string to send, I then expect my web service (written in python) to echo ...
6
votes
5answers
8k views
Byte Array to Image File
I am given a byte[] array in Java which contains the bytes for an image, and I need to output it into an image. How would I go about doing this?
Much thanks
4
votes
3answers
5k views
NSString (hex) to bytes
Isn't there any method in Objective-c that converts a hex string to bytes? For example @"1156FFCD3430AA22" to an unsigned char array {0x11, 0x56, 0xFF, ...}.
8
votes
2answers
16k views
Byte array in objective-c
How can I create a byte array in Objective-C?
I have some data like this:0x12, 0x23, 0x34, 0x45, 0x56, 0x67, 0x78, 0x89, 0x12, 0x23, 0x34, 0x45, 0x56, 0x67, 0x78, 0x89, that I want to prepare as a ...
6
votes
3answers
7k views
How many bytes in a JavaScript string?
I have a javascript string which is about 500K when being sent from the server in UTF-8. How can I tell its size in JavaScript?
I know that JavaScript uses UCS-2, so does that mean 2 bytes per ...
4
votes
4answers
4k views
How do I convert Long to byte[] and back in java
How do I convert a long to a byte[] and back in Java?
I'm trying convert a long to a byte[] so that I will be able to send the byte[] over a tcp connection. On the other side I want to take that ...
64
votes
13answers
4k views
Can you explain the concept of streams?
I understand that a stream is a representation of a sequence of bytes. Each stream provides means for reading and writing bytes to its given backing store. But what is the point of the stream? Why ...
26
votes
4answers
1k views
James Gosling's explanation of why Java's byte is signed
I was initially surprised that Java decides to specify that byte is signed, with a range from -128..127 (inclusive). I'm under the impression that most 8-bit number representations are unsigned, with ...
2
votes
2answers
1k views
PHP - determine how many bytes sent over http
Is it possible in PHP to get a count of the number of bytes transmitted to the client? For example, if I'm outputting a 10 MB file, is there a way to find out if all 10 MB were sent to the client, or ...
8
votes
4answers
7k views
byte array to short array and back again in java
I'm having some issues taking audio data stored in a byte array, converting it to a big-endian short array, encoding it, then changing it back into a byte array. Here is what I have. The original ...
4
votes
3answers
9k views
Android byte[] to image in Camera.onPreviewFrame
When trying to convert the byte[] of Camera.onPreviewFrame to Bitamp using BitmapFactory.decodeByteArray gives me an error SkImageDecoder::Factory returned null
Following is my code:
public void ...
9
votes
9answers
2k views
Why is a cast required for byte subtraction in C#?
I have to following code in VS2008 .net 3.5 using WinForms:
byte percent = 70;
byte zero = 0;
Bitmap copy = (Bitmap)image1.Clone();
...
Color oColor = copy.GetPixel(x, y);
byte oR = (byte)(oColor.R ...
3
votes
3answers
1k views
OR-ing bytes in C# gives int
I have this code.
byte dup = 0;
Encoding.ASCII.GetString(new byte[] { (0x80 | dup) });
When I try to compile I get:
Cannot implicitly convert type 'int'
to 'byte'. An explicit conversion
...
0
votes
3answers
2k views
C# - Convert a string of hex values to hex
This might sound odd, but my issue is that I have a text string of hex values from a text file, like so:
"0x0f, 0x40, 0xff, ...."
I have stored them in an array split by the delimiters, but what I ...
25
votes
2answers
9k views
What's the character encoding used? [closed]
Odd character codes:
ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ก้้้้้้้้้้้้้้้้้้้้ ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ก้้้้้้้้้้้้้้้้้้้้ ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ...
16
votes
7answers
25k views
4
votes
3answers
23k views
How to create a bmp file from byte[] in C#
I have a byte[] array received in TCP Client.The array contains a 24-bit RGB Bitmap file.How to create that bitmap file with given Width ,Height and data?
In C++ I use this
int WriteBitmapFile(const ...
9
votes
2answers
19k views
byte[] to image android
My issue is as follows :
I have stored a few pictures into the sqlite database, using the blob format, which seems to work ok. now i want to get my pictures out of the DB and put then back into ...
12
votes
2answers
3k views
Why is the range of bytes -128 to 127 in Java?
I don't understand why the lowest value a byte can take is -128. I can see that the highest value is 127, because it's 01111111 in binary, but how does one represent -128 with only 8 bits, one of ...
4
votes
4answers
14k views
How to Convert Byte* to std::string in C++?
I have Byte *, want to convert it to std::string. Can you please tell me the safest way to do this?
2
votes
5answers
4k views
Convert Byte Array into Bitset
I have a byte array generated by a random number generator. I want to put this into the STL bitset.
Unfortunately, it looks like Bitset only supports the following constructors:
A string of 1's and ...
3
votes
3answers
3k views
error in my byte[] to WPF BitmapImage conversion?
I'm saving a BitmapImage to a byte[] for saving in a DB. I'm pretty sure the data is being saved and retrieved accurately so it's not an issue there.
On my byte[] to BitmapImage conversion I keep ...
0
votes
4answers
13k views
Convert a Byte array to Image in c# after modifying the array
I'm trying to convert a byte[] to an image in C#. I know this question has been asked on different forums. But none of the answers given on them helped me. To give some context=
I open an image, ...
2
votes
5answers
3k views
Convert image into useable byte array in C?
Does anyone know how to open an image, specifically a jpg, to a byte array in C or C++? Any form of help is appreciated.
Thanks!
109
votes
4answers
4k views
Why is “int i = 2147483647 + 1;” OK, but “byte b = 127 + 1;” is not compilable?
Why is int i = 2147483647 + 1; OK, but byte b = 127 + 1; is not compilable?
24
votes
1answer
13k views
Byte array of unknown length in java
I am constructing an array of bytes in java and I don't know how long the array will be.
I want some tool like Java's StringBuffer that you can just call .append(byte b) or .append(byte[] buf) and ...
21
votes
3answers
14k views
How to create python bytes object from long hex string?
I have a long sequence of hex digits in a string, such as
000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44
only much longer, several kilobytes. Is there a builtin way ...
10
votes
8answers
4k views
Bitwise AND, Bitwise Inclusive OR question, in Java
I've a few lines of code within a project, that I can't see the value of...
buffer[i] = (currentByte & 0x7F) | (currentByte & 0x80);
It reads the filebuffer from a file, stored as bytes, ...
9
votes
5answers
8k views
Using Python How can I read the bits in a byte?
I have a file where the first byte contains encoded information. In Matlab I can read the byte bit by bit with var=fread(file,8, 'ubit1') then retrieve each bit by var(1),var(2), etc.
Is there any ...
16
votes
5answers
21k views
Converting char array into byte array and back again
I'm looking to convert a Java char array to a byte array without creating an intermediate String, as the char array contains a password. I've looked up a couple of methods, but they all seem to fail:
...
13
votes
4answers
29k views
Write bytes to file
I have a hexadecimal string (e.g 0CFE9E69271557822FE715A8B3E564BE) and I want to write it to a file as bytes. For example,
Offset 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
00000000 0C FE ...
8
votes
4answers
20k views
Convert short to byte[] in Java
How can I convert a short (2 bytes) to a byte array in Java, e.g.
short x = 233;
byte[] ret = new byte[2];
...
it should be something like this. But not sure.
((0xFF << 8) & x) >> ...
16
votes
1answer
4k views
What does a b prefix before a python string means?
In a python source code I stumbled upon I've seen a small b before a string like in:
b"abcdef"
I know of u prefix that means unicode and r prefix that means raw.
What does the b stand for and in ...
10
votes
6answers
3k views
Run Program from byte array
I have a program stored in byte array.
Is it possible to run it inside C#?
5
votes
2answers
3k views
Convert a byte into a boolean array of length 4 in Java
I need to convert a byte into an array of 4 booleans in Java. How might I go about this?
8
votes
5answers
9k views
java bit manipulation
byte x = -1;
for(int i = 0; i < 8; i++)
{
x = (byte) (x >>> 1);
System.out.println("X: " + x);
}
As I understand it, java stores data in two's-complement, meaning -1 = 11111111 ...
3
votes
5answers
10k views
How can I convert bits to bytes?
I have an array of 128 booleans that represent bits. How can I convert these 128 bit representations into 16 bytes?
Example:
I have an array that looks like this:
...
2
votes
3answers
766 views
Search longest pattern in byte array in C#
I need to write effective and quick method to search byte array for given pattern.
I write it this way, what do you think , how to improve? And it has one bug, it cannot return match with length 1.
...
2
votes
8answers
3k views
char size confusion
As per i know that 1 char = 1 byte = 32 bits(32 bit system).
char c=0xffff0000 //wrong
then why char allow just 8 bits and also every character in a file also of 8 bit length.
thanks.
6
votes
6answers
3k views
Converting integer to a bit representation
How can I convert a integer to its bit representation. I want to take an integer and return a vector that has contains 1's and 0's of the integer's bit representation.
I'm having a heck of a time ...
4
votes
1answer
3k views
Download a file over HTTP into a byte array in C#?
I'm trying to read a file that I have a web address for into a byte array. I've been using File.ReadAllBytes to read files locally and I've been unable to figure out the cleanest way to do this for a ...
3
votes
4answers
13k views
Java - Convert int to Byte Array of 4 Bytes? [duplicate]
Possible Duplicate:
Convert integer into byte array (Java)
I need to store the length of a buffer, in a byte array 4 bytes large.
Pseudo code:
private byte[] convertLengthToByte(byte[] ...

