Tagged Questions
A byte is usually, but not always, 8 bits.
78
votes
4answers
3k 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?
41
votes
12answers
2k 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 ...
33
votes
12answers
58k 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
934 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 ...
24
votes
8answers
959 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 ...
24
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. ...
23
votes
3answers
10k 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 ...
20
votes
4answers
639 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 ...
20
votes
7answers
7k 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 ...
18
votes
2answers
570 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 ...
15
votes
5answers
335 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 ...
15
votes
5answers
15k 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[] ...
13
votes
3answers
8k 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 ...
12
votes
4answers
2k 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
12
votes
4answers
23k 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 ...
11
votes
1answer
7k 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 ...
10
votes
2answers
239 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
8answers
247 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 ...
10
votes
12answers
503 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
4answers
10k 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}
9
votes
7answers
1k views
9
votes
2answers
256 views
C# int byte conversion
Why is
byte someVar;
someVar -= 3;
valid but
byte someVar;
someVar = someVar - 3;
isnt?
9
votes
3answers
1k 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 ...
8
votes
6answers
293 views
What exactly is a byte and what does it have to do with binary?
I'm just learning about binary and bytes. I understand that 8 bits make up a byte and that a byte can have 256 possibilities. The thing I am confused about is this:
byte[] b = new byte[] { 85, 85, ...
8
votes
6answers
1k views
C# Run Program from byte array
I have a program stored in byte array.
Is it possible to run it inside C#?
Thanks
8
votes
8answers
2k 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 ...
8
votes
3answers
2k 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 ...
8
votes
7answers
15k 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 ...
7
votes
2answers
128 views
Confusion with C ~ operator (bitwise Not) and comparing char variables
Using "ordinary C", I wish to compare two 8 bit bytes to determine if the second is the bitwise complement of the first. For example if Byte1 is binary 00001111 (15 in decimal) I want to test whether ...
7
votes
3answers
184 views
Large mutable byte array in Erlang
As I am writing a simple Minecraft server application in Erlang, I am now concerned with the question of how to efficiently store and modify chunk data.
For those who don't know about Minecraft's ...
7
votes
4answers
2k 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 ...
7
votes
3answers
441 views
Best way to get two nibbles out of a byte in javascript?
I'm parsing a binary file in javascript that is storing two pieces of information per byte, one per nibble. The values are, of course, 0-16 and 0-16.
In all other parts of the file format, each byte ...
7
votes
2answers
349 views
Why is the range of bytes -128 to 127 in Java?
OK, this is as noob as it gets, but I still don't get why the lowest value a byte can take is -128. That the highest value is 127 I can understand, because it's 01111111 in binary, but how does one ...
7
votes
2answers
474 views
.NET Regular expressions on bytes instead of chars
I'm trying to do some parsing that will be easier using regular expressions.
The input is an array (or enumeration) of bytes.
I don't want to convert the bytes to chars for the following reasons:
...
7
votes
3answers
1k 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 ...
7
votes
5answers
2k 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
...
7
votes
7answers
12k views
7
votes
9answers
1k 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 ...
7
votes
3answers
5k 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 ...
7
votes
3answers
7k 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 ...
6
votes
5answers
104 views
C: Overwrite another function byte by byte
Let's suppose I have a function:
int f1(int x){
// some more or less complicated operations on x
return x;
}
And that I have another function
int f2(int x){
// we simply return x
return x;
}
...
6
votes
2answers
152 views
R 2.14 byte compilation - how much performance increase
I saw that the latest R version supports byte compilation. What is the performance gain I can expect? And are specific tasks more positively impacted that others?
6
votes
2answers
440 views
How do I find out how many bytes a character has?
I was wondering how do I find out how many bytes does a character have?
6
votes
5answers
397 views
Very Strange Problem sending data via Sockets in C#
I appologize for this lengthy post. I have made it as small as possible while still conveying the problem.
Ok this is driving me crazy. I have a client and a server program, both in C#. The server ...
6
votes
3answers
109 views
Why is alignment imporant?
I know that some processors fail with misaligned data, and others like the oh-so-common x86, would just be slower with that.
My question is why? Why is it harder for an x86 processor to get the data ...
6
votes
7answers
1k views
C#. Fastest way to calculate sum of bits in byte array
I have two byte arrays with the same length. I need to perform XOR operation between each byte and after this calculate sum of bits.
For example:
11110000^01010101 = 10100101 -> so 1+1+1+1 = 4
...
6
votes
2answers
204 views
how much bytes will take?
can anyone tell me below string how much bytes will take?
string abc = "a";
Thanks in advance:)
6
votes
2answers
1k views
C#: Maximum length of byte[]?
I'm trying to create an array of bytes whose length is UInt32.MaxValue. This array is essentially a small(ish) in-memory database:
byte[] countryCodes = new byte[UInt32.MaxValue];
On my machine, ...
6
votes
4answers
282 views
how do convert string to byte[] in C#
How do you get a byte array out of a string in C#? I would like to pass a string to this method.
6
votes
6answers
866 views
How to check the number of bytes consumed by my Structure?
If I am creating realtively 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 to do it? Is there some code chunk ...