A byte is usually, but not always, 8 bits.
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?
73
votes
19answers
106k 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:
...
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 ...
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[] ...
42
votes
5answers
15k views
How do you specify a byte literal in Java?
suppose I have a method
void f(byte b);
how can I call it with a numeric argument without casting:
f(0);
gives an error.
any ideas
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 ...
32
votes
7answers
2k views
Are there any real life uses for the Java byte primitive type?
For some inexplicable reason the byte primitive type is signed in Java. This mean that valid values are -128..127 instead of the usual 0..255 range representing 8 significant bits in a byte (without ...
31
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 ...
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
...
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 ...
25
votes
8answers
2k views
Endless for loop
I have the following loop:
for (byte i = 0 ; i < 128; i++) {
System.out.println(i + 1 + " " + name);
}
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. ...
25
votes
2answers
9k views
What's the character encoding used? [closed]
Odd character codes:
ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ก้้้้้้้้้้้้้้้้้้้้ ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ก้้้้้้้้้้้้้้้้้้้้ ก็็็็็็็็็็็็็็็็็็็็ กิิิิิิิิิิิิิิิิิิิิ ...
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 ...
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}
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 ...
18
votes
2answers
645 views
What is a “byte” in C / C++
For example, here's a reference for fread:
size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );
Reads an array of count elements, each one with a size of "size bytes"...
So how ...
18
votes
4answers
35k views
Representing char as a byte in Java
I must convert a char into a byte or a byte array. In other languages I know that a char is just a single byte. However, looking at the Java Character class, its min value is \u0000 and its max ...
17
votes
4answers
10k views
Set specific bit in byte
I'm trying to set bits in Java byte variable. It does provide propper methods like .setBit(i). Does anybody know how I can realize this?
I can iterate bit-wise through a given byte:
if( (my_byte ...
17
votes
7answers
71k 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 ...
16
votes
7answers
25k views
16
votes
3answers
6k views
Splitting a Byte array
Is it possible to get specific bytes from a byte array in java?
I have a byte array:
byte[] abc = new byte[512];
and i want to have 3 different byte arrays from this array.
byte 0-127
byte ...
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 ...
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:
...
15
votes
5answers
603 views
Innovative way for checking if number has only one on bit in signed int
I'm looking for an innovative way to check if a number has only one on bit in a signed int.
I am well aware that I can simply do a loop with a counter, some modular division, and a bit shift. But I'm ...
14
votes
5answers
416 views
Is there any reason not to use fixed width integer types (e.g. uint8_t)?
Assuming you're using a compiler that supports C99 (or even just stdint.h), is there any reason not to use fixed width integer types such as uint8_t?
One reason that I'm aware of is that it makes ...
13
votes
4answers
28k 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 ...
13
votes
4answers
8k views
Ruby: create a String from bytes
I would like to build a string from a byte value.
I currently use:
str = " "
str[0] = byte
This seems to work fine but I find it ugly and not very scalable to strings longer than 1 character.
Any ...
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 ...
12
votes
8answers
5k views
Difference between byte vs Byte data types in C#
I noticed that in C# there are both a byte and Byte data type. They both say they are of type struct System.Byte and represent an 8-digit unsigned integer.
So I am curious as to what the difference ...
12
votes
3answers
23k views
How to print bytes using System.out.println?
I've declared a byte array (I'm using Java):
byte test[] = new byte[3];
test[0] = 0x0A;
test[1] = 0xFF;
test[2] = 0x01;
How could I print the different values stored in the array?
If I use ...
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 ...
12
votes
2answers
6k views
C# int byte conversion
Why is
byte someVar;
someVar -= 3;
valid but
byte someVar;
someVar = someVar - 3;
isnt?
12
votes
5answers
5k views
Why does the xor operator on two bytes produce an int?
//key & hash are both byte[]
int leftPos = 0, rightPos = 31;
while(leftPos < 16) {
//possible loss of precision. required: byte, found: int
...
12
votes
4answers
283 views
“Where are my bytes?” or Investigation of file length traits
This is a continuation of my question about downloading files in chunks. The explanation will be quite big, so I'll try to divide it to several parts.
1) What I tried to do?
I was creating a ...
11
votes
8answers
547 views
How to represent 4 boolean possibilities in a single value
I want to store 4 boolean possibilities in a single value. For e.g.,
I want a single value that tells whether a person is:
IsSingle
IsGraduate
IsMale
IsLookingForPartner
So is it good to store ...
11
votes
3answers
16k views
How do I convert a Bitmap to byte[]?
Basically I am inserting an image using the listviews inserting event, trying to resize an image from the fileupload control, and then save it in a SQL database using LINQ.
I found some code to ...
11
votes
3answers
10k views
Converting bytes to a binary string in c#
In c# I am converting a byte to binary, the actual answer is 00111111 but the result being given is 111111. Now I really need to display even the 2 0s in front. Can anyone tell me how to do this?
I ...
11
votes
3answers
2k views
C#: Implementing NetworkStream.Peek?
Currently, there isn't a NetworkStream.Peek method in C#. What is the best way of implementing such a method which functions just like NetworkStream.ReadByte except that the returned byte is not ...
11
votes
4answers
7k views
What is the best resizable circular byte buffer available in Java?
I need a byte buffer class in Java for single-threaded use. I should be able to insert data at the back of the buffer and read data at the front, with an amortized cost of O(1). The buffer should ...
10
votes
7answers
24k views
How to correctly convert filesize in bytes into mega or gigabytes?
I'm using the DriveInfo class in my C# project to retrieve the available bytes on given drives. How to I correctly convert this number into Mega- or Gigabytes? Dividing by 1024 will not do the job I ...
10
votes
12answers
1k views
What actually happens when a Byte overflows?
What actually happens when a Byte overflows?
Say we have
byte byte1 = 150; // 10010110
byte byte2 = 199; // 11000111
If we now do this addition
byte byte3 = byte1 + byte2;
I think we'll end ...
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#?
10
votes
5answers
14k views
Error “This stream does not support seek operations” in C#
I'm trying to get an image from an url using a byte stream. But i get this error message:
This stream does not support seek operations.
This is my code:
byte[] b;
HttpWebRequest myReq = ...
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, ...
10
votes
2answers
20k views
How to declare and use 1D and 2D byte arrays in Verilog?
How to declare and use 1D and 2D byte arrays in Verilog?
eg. how to do something like
byte a_2D[3][3];
byte a_1D[3];
// using 1D
for (int i=0; i< 3; i++)
{
a_1D[i] = (byte)i;
}
// using 2D
...
10
votes
1answer
3k views
MVC3 - posting byte array to a controller - Database RowVersion
I am working on an MVC3 application. My client side ViewModel contains a SQL Server RowVersion property, which is a byte[]. It is rendered as an Object array on the client side. When I attempt to ...
10
votes
2answers
796 views
What is the difference between a string and a byte string?
I am working with a library which returns a byte string and I need to convert this to a string. Although I'm not sure what the difference is - if any.
Could someone please explain. Thanks.
10
votes
5answers
15k views
java creating byte array whose size is represented by a long
I'm trying to create a byte array whose size is of type long. For example, think of it as:
long x = _________;
byte[] b = new byte[x];
Apparently you can only specify an int for the size of a byte ...
10
votes
2answers
470 views
So many ways to define a byte
Does it make a difference which one I use in objective-c (particularly on iOS)? I assume it comes from inheriting from C and its types, as well as inheriting the types from Mac OS, which iOS was ...