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

learn more… | top users | synonyms (1)

-1
votes
3answers
122 views

Find Pattern of Bytes in Byte Array

today I am trying to find a pattern of bytes in an array (in this case pointer) I do know I could use std::string needle() and haystack etc. but I was wondering if I could use that with BYTE ...
0
votes
0answers
221 views

AESManaged File Encryption and Decryption and prepending initiaization vector

I am trying to encrypt/decrypt bytes - I have done a lot of reading about the Key and IV for the AES algorithm using the AESManaged class in System.Security.Cryptography. I read James Johnson's ...
3
votes
3answers
157 views

Checking if Bytes are 0x00

What is the most readable (and idiomatic) to write this method? private bool BytesAreValid(byte[] bytes) { var t = (bytes[0] | bytes[1] | bytes[2]); return t != 0; } I need a function which ...
0
votes
1answer
81 views

Recording sound into bytestream in Android

I want create an app which records a sound into bytestream and it can be listened again. It will not save the recorded audio into a file, rather it will save it into a hardware memory. And a play ...
0
votes
1answer
78 views

Read byte from Serial

I´ve made this program that reads info from serial and writes the value binary to 6 LEDs. I don´t feel that it´s the easiest or the fastest way though and that is what I´m really looking for. My code ...
0
votes
3answers
63 views

Convert FloatBuffer[] to byte[]

I've been searching for a way to convert a FloatBuffer array to a byte array. I have found a way to convert a FloatBuffer object to byte[]: convert from floatbuffer to byte[] But after searching the ...
0
votes
2answers
247 views

Byte Array Size for a IPv6 IP Address

I'm writing an app that will store the IP Addresses of where requests are coming from. Those IP Addresses will be stored as a varbinary(16) in my database. Its become apparent that a varbinary(16) is ...
0
votes
2answers
92 views

use of ampersand

I am trying to understand this bit of code, the method addBittoTree needs a boolean to be passed through. I am not quite sure as to what it is checking. I do not understand why there is an ampersand ...
1
vote
1answer
182 views

assign byte to string delphi xe2

I have code procedure _UUEncode; var Sg: string; Triple: string[3]; begin ... Byte(Sg[1]) := Byte(Sg[1]) + Length(Triple); // <- on this line I got error ... end; I got "left sign ...
4
votes
4answers
87 views

Java - stream of bytes vs. stream of characters?

Title is pretty self-explanatory. In a lot of the JRE javadocs I see the phrases "stream of bytes" and "stream of characters" all over the place. But aren't they the same thing? Or are they slightly ...
0
votes
3answers
80 views

How do I map one range of values to another in python

Want to do the equivalent of this, (and the inverse toByte) in python, how do you map in python? int toInt(byte b) { return map(b, 0, 255, -128, 127); } i would try ...
3
votes
1answer
99 views

creating a custom getColor(byte r, byte g, byte b) method

i have a simple byte array that i want to take colours from. My plan was to have three bits from red, three bits for green, and two bits for blue. 8-bit. I think the colours are right: Please ...
0
votes
2answers
151 views

Creating a encrypted Password with BLOWFISH with byte[24] length

I need to create a encrypted password for a server. This server uses Blowfish encryption to do the encryption. Now here are the info I have: KEY: "12345678abcdefgmypassword" Block size: 8 bytes - 64 ...
1
vote
4answers
87 views

Java and unsigned Bytes

Good day, Sorry to ask about such a common questions, but i have been googling and reading and i still have not come right. I need to make use of an array of unsigned bytes. i need to send certain ...
1
vote
1answer
135 views

Android : byte allocation exceeds the byte maximum heap size

I'm working on an Android application which encrypt a media (picture, video, etc) using AES encryption and I have the java.lang.OutOfMemoryError when I read big files (e.g. more than 90 MB) : ...
0
votes
3answers
71 views

Binary editing in java

I have a file that I am trying to binary edit to cut off a header. I have identified the start address of the actual data I want to keep in the file, however I am trying to find a way in Java where I ...
0
votes
0answers
35 views

sendDataMessage with [B and byte[] in the signature

There is a sendDataMessage method with 2 different signatures: Signature 1 (on devices HTC Desire S, Samsung S3 Mini, T-Mobile G1...) public void ...
0
votes
1answer
119 views

Python read() automatically converts hex to char?

I'm trying to convert a 4x4, 5.6.5.0.0, .bmp file into a list of rgb values to plug into another program that needs a specific format, and I'm getting stuck because I think the read() method in Python ...
2
votes
4answers
193 views

How does one access a single byte of an integer?

For a specified communication standard RTCM SC104 3.1, I need to split data across bytes as a pair of 12 bit data segments. So for a given message I need to place the message type number on the first ...
0
votes
1answer
115 views

convert byte array to uint numeric value

Let's say I have array of bytes byte[] byteArr = new byte[] { 1, 2, 3, 4, 5 }; I want to convert this array to get regular numeric variable of uint, so result will be uint result = 12345; So ...
0
votes
2answers
71 views

How to first check files on equality before doing a byte by byte comparison?

I am writing a program that compare a lot of files. I first group files by filesize. Then I check them byte by byte between grouped files. What params or propeties can I check before byte by byte ...
0
votes
0answers
60 views

[B instead of byte[]

There is a private method as the following: private void android.telephony.SmsManager.sendRawPdu(byte[],byte[],android.app.PendingIntent,android.app.PendingIntent) And this code snippet DOES work ...
2
votes
1answer
75 views

Equivalent of perl statement to C

What would the equivalent of this Perl line be in C? unpack('J>', pack('B*', $s)) Depending on the build of Perl, it takes the binary representation of 4 or 8 bytes ...
0
votes
3answers
89 views

Showing a +255 byte in a byte[]

I really hope someone can help me. I have a single byte[] that has to show the amount of bytes in die byte[] to follow. Now my value is above 255. Is there a way to display/enter a large number?
0
votes
0answers
397 views

“This stream does not support seek operations”

I get a stream form a web service: Stream resultStream = WebServiceEntities.GetAttachment(attachmentId); I need to convert this stream into a byte array but Attempt # 1 byte[] resultBytes = ...
-3
votes
2answers
146 views

(JAVA) send a file through socket adds extra nul and corrupts file(copy) [closed]

i'm an intermediate java programmer , i was attempting to send a file through sockets, with this code and i obtain a new k.bmp(source) named k7.bmp , everything alright , less the k7.bmp has an extra ...
0
votes
1answer
58 views

Reading DWORD incorrectly with AS3?

In this question I got an answer on how to use this information to read BLB files. So I followed the instructions, and it appears that I'm reading the header properly. However, when I try to read the ...
0
votes
3answers
114 views

How to extract 2 bytes from a word, and how to make a word from 2 bytes (in C)?

I am trying to extract two bytes from a 16-bit word, and to make a 16-bit word from two bytes. This is what I have tried (byte = unsigned char, word = unsigned short): Split grpix word into 2 bytes: ...
1
vote
7answers
175 views

Split array of m bytes into chunks of n bytes

I'm working on a program that manipulates brain data. It recieves a value represents the current magnitude of 8 commonly-recognized types of EEG (brain-waves). This data value is output as a series of ...
0
votes
0answers
39 views

Integer-String Parser

I am parsing an XML document, and when I try to save the String (data) that I am reading as an Integer, I found an exception. Integer.parseInt(data) I also tried changing the atribute type to Byte ...
0
votes
0answers
168 views

implementation of RSA in Java

I'm trying to implement my own version of RSA algorithm in JAVA. I need to encrypt a 32byte randomly generated number. For this purpose i have used SecureRandom class in Java to generate a 32 byte ...
3
votes
2answers
140 views

Why can I not store a negative value in a byte variable?

I am converting code that works in Java but not in C# byte[] buffer = new byte[64]; this.buffer[((int)this.count & 0x3F)] = -128; This generates a compile time error "Constant value '-128' ...
0
votes
5answers
99 views

NumberFormat Exception to parse String to Byte?

I am trying to parse the following String to Byte.But it gives me NumberFormat Exception.Can some body tell me what is the solution for this? Byte.parseByte("11111111111111111111111110000001", 2);
0
votes
5answers
95 views

How to convert String to byte

I am trying to convert the string to byte, but I become NumberFormatException. String s = "SYNC"; Byte b = Byte.valueOf(s); System.out.println(b);
0
votes
2answers
148 views

Java fixed point arithmetic using byte

I have some values that belong in [-1,1]. I don't need a lot of accuracy but I will need a LOT of those values. Now I'm more of a hardware guy so the solution came to me effortlessly: use fixed point ...
0
votes
2answers
109 views

Using byte in java

How does the code in java for (int a=0; a < 256; a++) { sta[a] = (byte)a; System.out.println(a); } prints 0 to 255 when the maximum value if a byte is 127. How to convert ...
0
votes
2answers
36 views

How to correctly get a size in bytes from a size in bits?

Suppose you are using a bit set or something similar, essentially some object that allows you to access the value of individual bits. It may be something simple like an integer word or an array of ...
0
votes
2answers
164 views

Buffered Input Stream does not load file correctly

I have the following code to download a List of files. After downloading I compare the md5 of the online File with the downloaded. They are similar when the download size is lower than 1024 bytes. For ...
-1
votes
1answer
73 views

How to work with left and right bytes of a short int? [closed]

I have a short int, which is 2 bytes, but I only want to output the left byte to a file. How do I do this? I'm using binary functions open(), read(), write(), etc. I would also like to shift the ...
0
votes
1answer
144 views

(C) Bit shifting/char placement in a short int variable

New to C. The overall goal here is to put a character in a short int, and have it occupy the left byte of the short int rather than the right byte. To elaborate - I'm trying to take a variable: ...
1
vote
4answers
135 views

How to convert and add a String to List<byte>?

I have a string which I want to convert into bytes (using the encoding.getbytes() function properly) and then the bytes that result from the conversion, add them to a List. How can I do this? I've ...
1
vote
4answers
187 views

How can I convert two bytes of an integer back into an integer in Python?

I am currently using an Arduino that's outputting some integers (int) through Serial (using pySerial) to a Python script that I'm writing for the Arduino to communicate with X-Plane, a flight ...
0
votes
1answer
26 views

randomblob(N) in sqlite

The documentation (http://www.sqlite.org/lang_corefunc.html) says that it generates a N-byte blob, and it goes on to give an example of using randomblob(16) with hex() for generating unique ids. But ...
1
vote
3answers
188 views

windows batch to convert bytes to GB

How to convert the result to bytes on Gigabytes in this script for example: @echo off set file=C:\Users\%username%\AppData\Local\Microsoft\Outlook\%username%.ost %1 %0 :: %file% set len=%~z2 echo ...
0
votes
4answers
70 views

Java Bytebuffer overwrite bytes

I've got a ByteBuffer that contains 1024 bytes. I need to overwrite a short within the buffer at a certain offset at key times. I know the ByteBuffer class has putShort(), but this doesn't overwrite ...
0
votes
1answer
74 views

AS3 - Using struct information to decompress a format

I'm wondering, is it possible to use this sort of information in AS3 to decompress a format? I've seen people use C++ to decompress similar formats, but since I'm fluent in AS3 I'd like to know if I ...
0
votes
1answer
88 views

How can i see how many bytes was received from GSON JsonReader

While reading here and creating a large Object to send and receive using JsonWriter and JsonReader. I wanted to keep track of total bytes sent.
0
votes
3answers
197 views

byte[] to String {100,25,28,-122,-26,94,-3,-26}

How can I convert this byte[] to String : byte[] mytest = new byte[] {100,25,28,-122,-26,94,-3,-26}; i get this : "d��^�" when I use : new String( mytest , "UTF-8" ) Here is code java for ...
1
vote
1answer
104 views

Invalid string or buffer length when inserting null in byte type field

I get the following exception when inserting : ERROR [HY090] [Informix .NET provider]Invalid string or buffer length. When obj.Request_file = null;//of byte[] type using ...
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 ...

1 3 4 5 6 7 38