A byte is usually, but not always, 8 bits.

learn more… | top users | synonyms (1)

1
vote
2answers
93 views

In Go, how can I convert a struct to a byte array?

I have an instance of a struct that I defined and I would like to convert it to an array of bytes. I tried []byte(my_struct), but that did not work. Also, I was pointed to the binary package, but I am ...
0
votes
2answers
33 views

Scala - generate Array of bytes based on range

I am trying to solve a (possibly) trivial problem. I would like a nice, concise way to instantiate Array of bytes based on range. So far this works Array(1 : Byte, 2 : Byte) but I would like to use ...
0
votes
1answer
44 views

Saving a .jpg to byte[] android

This shouldn't be that hard, but I cannot figure this out. I need to save an image, on my end only, and build it dynamically so all my users will view these images. The tutorials on Parse.com are very ...
0
votes
3answers
50 views

Convert from byte array to string hex c# [duplicate]

Suppose I have byte array. byte[] a = new byte[] {0x33,0x43,0xFE}; I want to convert it to string. string str = convert(a); My str should look like this: "33 43 FE" How can I do ...
0
votes
0answers
12 views

Calculation units in EtherType frame field

The EterType ethernet frame field value is represent a payload field length in bits or bytes?
1
vote
2answers
93 views

How to convert a Seq[Byte] into an Array[Boolean] representing each bit in Scala

Is there a better way to convert a sequence of Bytes into an Seq[Boolean] where each element represents a bit from the Byte sequence? I'm currently doing this, but byte2Bools seems a little too ...
1
vote
2answers
61 views

Why does bitwise AND with byte in JAVA do this?

I'm messing around with bitwise operators, and I was trying to convert a negative byte to an unsigned 8 bit value, and this is what people suggested: System.out.println(-20 & 0xFF); //bitwise ...
0
votes
1answer
50 views

How to select each first byte from bytes array

I have bytes array ( Unicode character in this case). Unicode characters consist of 2 bytes and I want get each first byte. Linq would be appreciated. Example: Dim b_1() As Byte = New Byte() ...
0
votes
1answer
42 views

What does this binary documentation mean?

I'm trying to decode somebody's byte array and I'm stuck at this part: &lt state &gt ::= "01" <i>(2 bits) for A</i> "10" <i>(2 bits) for B</i> ...
-1
votes
2answers
66 views

java byte[] and String conversion

I have some trouble in encrypting and decrypting some AES messages because of byte[]-String conversions...I find quite interesting how a[9]!=c[9] (saw the difference when debugging) try { ...
0
votes
0answers
38 views

How to output codeword : LZW compression

I am trying to write an LZW compression Encoder for an assignment. I have implemented the following code which I think is correct but I am unsure what to write for the output file. public static void ...
0
votes
1answer
30 views

recognize operation/function with 2 values by result

Updated: I have some data structure. I have no information what structure it is and how values are stored, but it should contain array of numeric values (integer) Bytes (in decimal): 0 20 13 4 25 ...
5
votes
2answers
50 views

Java byte[] to/from String conversion

Why does this junit test fail? import org.junit.Assert; import org.junit.Test; import java.io.UnsupportedEncodingException; public class TestBytes { @Test public void testBytes() throws ...
1
vote
2answers
71 views

Combine 2 numbers in a byte

I have two numbers (going from 0-9) and I want to combine them into 1 byte. Number 1 would take bit 0-3 and Number 2 has bit 4-7. Example : I have number 3 and 4. 3 = 0011 and 4 is 0100. Result ...
0
votes
1answer
30 views

SSE Compare Packed Unsigned Bytes

I'm trying to use the SSE instructions to do some image filtering. The image I'm using has a byte per pixel (255 greyscale) and I need to compare the unsigned packed bytes using a greather than ...
2
votes
2answers
64 views

Convert string of 0s and 1s to byte in Python

I have a string representation of binary integers and I need bytes having the exact bit structure, to send over the sockets. For e.g. if I have a string of length 16 : 0000111100001010 then I need 2 ...
2
votes
6answers
73 views

Purpose of byte type in Java

I read this line in the Java tutorial: byte: The byte data type is an 8-bit signed two's complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive). The byte ...
0
votes
0answers
51 views

Trying to convert I²C data into four separate int variables in Arduino

My basic setup is having two Arduinos talk to one another across I²C. I have one Arduino take four separate sensor readings and send them over the I²C bus. But I can't seem to figure out how to get ...
1
vote
6answers
106 views

how to read every third bit in a byte array

I have a byte array of 48 bytes and would like to read every third bit of a byte in this array, how can i achieve this? this is the output of my device 100510000 10000000 100390000 10000000 ...
-7
votes
0answers
28 views

String to byte[] and byte[] to String doesn't work [closed]

I am learning about java PipedInputStream and PipedOutputStream. I have written myself a program to test the pipe functionality. The output of the code below is: 16 32 [B@11671b2 However I ...
0
votes
0answers
77 views

Read and write bytes in C (from/in file)

I have to solve the following problem in C for the operating systems class: At the command line three file are given, two for input, one for output. The output file is obtained from input files, as ...
1
vote
1answer
37 views

How to write in nasm without writing null bytes?

Pretty simple problem. This nasm is supposed to write a user-written message (i.e. hello) to a file, again determined by user input from an argument. It does this just fine, but the problem is, it ...
1
vote
1answer
33 views

Single Byte Multiplication in Python?

I have a requirement to decode a file using simple byte multiplication For every byte in the file, the byte value is muliplied by 0x69. The result cannot be a word, it must be a single byte. ...
0
votes
1answer
42 views

Which is the best charset to pass data to php?

In my Java App, I want to pass individual bytes of information to a php script via POST. In order to do that, I convert the byte[] into a String. Now, which charset is best for this operation? I want ...
0
votes
1answer
42 views

c++ cli comparing hexadecimal bytes from a file not working

I have this file called ab.exe it contains this in hexadecimal ...
1
vote
1answer
63 views

Read a byte starting from a specific bit in a file - C#

I need to read a byte from a .bin but starting from the specific bit, for example: If I have this two bytes: 01010111 10101100 The program should be able to read from any bit, let's say starting ...
0
votes
4answers
106 views

Java ByteArray equivalent in C or C++

What are the equivalent for java byte in C,C++ byte[] itemsArray; itemsArray = new byte[items *no]; itemsArray[x] = (byte) xyz; unsigned char * itemsArray; itemsArray = (unsigned char*) malloc ...
0
votes
1answer
21 views

Byte to megabyte conversion difference on Windows

Why does the amount differ when I convert bytes to Megabytes? You have to multiply the amount by 1000 000 again. I thought the conversion automatically does that for you?
1
vote
1answer
22 views

Python generic buffer datatype access

In Python, is there any existing library-based method to polymorphically treat a buffer as being an array of any datatype -- including bits, bytes, WORDs, DWORDs, etc. -- without copying the buffer? ...
2
votes
1answer
74 views

Converting a float in chars to float (PYTHON)

I have a program in python in which I want to receive a frame with some values. This values are sent by a xbee. Xbee send a float splitted in 4 bytes by a union struct, something like this: typedef ...
0
votes
1answer
49 views

Generate a sound - PCM (Android - Java)

I've found here on stackoverflow.com a great example that actually works for playing sounds. Everything works smoothly but I'd like to know what happen in PCM generation. Here is the code: int idx = ...
-2
votes
2answers
58 views

reading java class files using java program

I am writing a java code to help me read and print all byte code in a .class file. I have tried surfing the internet, but the answers dont really answer my question. below is the code I currently ...
2
votes
4answers
100 views

Please explain me why 24,16, 8 were used in converting int to bytes?

The following code is to convert an int to Bytes array. I know the int i is right shifted 24, 16, 8 times and ANDED with 0xFF but what I can't understand is why these numbers were used? private ...
0
votes
2answers
98 views

Converting string to byte array in C#

I'm quite new to C#. I'm converting something from VB into C#. Having a problem with the syntax of this statement: if ((searchResult.Properties["user"].Count > 0)) { ...
0
votes
1answer
48 views

RGB LED - Colour Values

I have a series of RGB LED lights hooked up to my Arduino board, and I'm trying to change the values of the LED, only problem is that I cant seem to find anything on a HEX to RGB converter. Also, the ...
0
votes
1answer
53 views

WCF WebService on Android project - How to get byte[] type via SoapObjects?

I have Android / Java project with Network threads. It is connected to WCF WebService which provides me method GetAddonsTypes. GetAddonsTypes return long, int, and string items so I use own Parser ...
0
votes
0answers
19 views

Arranging bytes from a packet

I made a small program to read my mac address but i cant get the read out to look right. right now my output looks like 302545261200 but i would like it to look like 00:12:26:45:25:30 here's the ...
0
votes
1answer
48 views

How to Reduce the size of a speccific format string?

I have designed a 2 Pass Assembler for my project. The output is in Hexadecimal form i.e. 15 is 0F. I am working with ComPort and to send "0F" over the line it should be sent as String. But the ...
0
votes
5answers
68 views

read gzip file to byte[] all at once

in code GZIPInputStream gzis= new GZIPInputStream(bais); byte[] bBodyUnzipped= new byte[10240]; gzis.read(bBodyUnzipped); , how can I optimize the disk space usage and not create a big byte[] by ...
1
vote
1answer
86 views

Base64 decoding

I'm trying to decode some text in base 64, and I don't understand why I get an error while trying to do that: b'Zm9v'.decode('base64_codec') The exception raised is: TypeError: expected bytes, not ...
2
votes
2answers
73 views

Pretty file size in Ruby?

I'm trying to make a method that converts an integer that represents bytes to a string with a 'prettied up' format. Here's my half-working attempt: class Integer def to_filesize { 'B' ...
2
votes
1answer
61 views

Converting Hexidecimal Strings to Numeric Types and back

I need a function to convert hex values in the format 0xFFFF (2 Bytes) to decimal (unsigned and signed). For example: 0xFFFE is 65534 (unsigned) 0xFFFE is -2 (signed) I need also the ...
3
votes
1answer
106 views

Using ImageIO.write() to create a JPEG creates a 0 byte file

I am trying to write a method that takes an image, and saves a 100 by 100 thumbnail of that image. However, when I save the file, it comes out as an unreadable 0 byte image (with the error "Error ...
0
votes
0answers
29 views

Visual Basic Byte Length Program Cache

I am trying to make a remote execution tool so that I can run commands away from home aswell as message boxes to remind me about things and I found some code and changed it to my liking but when I ...
0
votes
3answers
69 views

How to append a byte to a string in Java?

I have this operation I need to perform where I need to append a byte such as 0x10 to some String in Java. I was wondering how I could go about doing this? For example: String someString = "HELLO ...
0
votes
0answers
53 views

byte[] (Image) to Word Document

I'd like to draw a graphic, put the drawn graphic into a memory stream and then put the drawn graphic into a word document. So it would be like: Graphics Canvas; //...Drawing... byte[] GraphicBuffer; ...
3
votes
1answer
56 views

How to print binary file as bytes?

I did >>> b0 = open('file','rb') Then >>> b0.read(10) gives b'\xb8\xaaK\x1e^J)\xab_I' How can I get things printed all as pure hex bytes? I want ...
0
votes
3answers
65 views

Most efficient way to convert two bytes into a 16bit value?

Say first byte = 2 (dec) and second byte = 1 (dec). First byte therefore represents 257 (dec). Second byte therefore represents 1 (dec). So the (total) 16bit value is 258 (dec). So if I do: ...
-1
votes
3answers
82 views

Why are null bytes not working? [closed]

I have created a simple website based on my knowledge but I discovered that it suffers from a Local File Inclusion (LFI) vulnerability. I want to test exploiting it on my computer but whenever I try ...
1
vote
2answers
82 views

How to convert an array of bits to a char

I am trying to edit each byte of a buffer by modifying the LSB(Least Significant Bit) according to some requirements. I am using the unsigned char type for the bytes, so please let me know IF that is ...

1 2 3 4 5 38