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

learn more… | top users | synonyms (1)

0
votes
3answers
67 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
83 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 ...
0
votes
1answer
80 views

Best efficient way to write a big string of bytes to file

I am writing a string of bits to a file like this : //String to ByteArray byte[] b = new BigInteger(encodedFile.toString(), 2).toByteArray(); //Writing FileOutputStream fos = new ...
0
votes
1answer
64 views

Opening File in binary form

I am trying to use C++ to open a file. The file can be of any type. The thing that I am trying to do is to open the file as it is stored in the memory. Suppose that it is a 1 byte text file and ...
3
votes
1answer
78 views

Python detect string byte encoding

I've got about 1000 filenames read by os.listdir() some of them are encoded 'utf-8' and some are 'cp1252'. I want to decode all of them to unicode for further processing in my script. Is there a way ...
0
votes
1answer
92 views

Correctly way to convert size in bytes to KB, MB, GB in Javascript

I got this code to covert size in bytes via using PHP PHP filesize MB/KB conversion Now I wan't to covert via using Javascript , I tried to convert this code to JS so look like this.. function ...
-2
votes
1answer
45 views

Hhow to read first 4 and last 4 bits from byte?

C# how to read first 4 and last 4 bits from byte ?
0
votes
1answer
38 views

Length of the byte array is smaller than the bitmap

I convert bitmap to byte array: ByteArrayOutputStream stream = new ByteArrayOutputStream(); bmp.compress(Bitmap.CompressFormat.PNG, 100, stream); byte[] byteArray = stream.toByteArray(); For ...
-5
votes
1answer
49 views

save contents in txt file in byte format [closed]

I want to save contents in a file in byte format however it gets converted to string everytime. I want my program to read and write bytes to a file and not its string value.please help. Is it ...
0
votes
1answer
72 views

Breezejs Byte Property Validation Error

I'm trying to create a small application using breezejs, knockout and webapi. However I have encountered an issue, possibly a bug when using a Byte data type for a property. I manage to pass the data ...
0
votes
0answers
61 views

Android scaled Bitmap from RGBA byte array

I am well aware that one can manipulate an array of RGBA bytes into a Bitmap as follows: int width = 300; int height = 500; int depth = 4; byte[] img = new byte[height*width*depth]; for (int y = 0; ...
-1
votes
1answer
124 views

How to allocate specific number of bytes in a char array - memory management

I have a char array that I'm using as a memory pool. I already have all the bytes flagged to signify that they are free/not free. My question is how do I go about allocating 4 bytes of the array for ...
0
votes
1answer
78 views

C++: BOOST-ASIO async_read_some does not return number of packet bytes?

I tried using following code to read the number of available bytes in the socket (on the server side) and the variable packet_bytes does not do anything. I was expecting the number of bytes used by ...
0
votes
1answer
61 views

Pointers & converting a char array to an int

I am doing some exercises to figure out how to access values in an array after they are changed with pointers. Can someone point out why the first output does not show the desired output? I am trying ...
-2
votes
1answer
67 views

Difference between byte flip and byte swap

I am trying to find the difference becoz of byte flip functionality I see in Calculator on Mac with Programmer`s view. So I wrote a program to byte swap a value which we do to go from small to big ...
0
votes
2answers
114 views

byte[] to String and String to byte[]

I have a small problem to change the type from byte[] to String and then from String to byte[]. When I use my code, it returns the RSA error "Too much data for rsa block". But when I use the original ...
0
votes
4answers
92 views

How to change 37 bits in a byte array to all complement of existing value

I have a byte array myByteArray[82] I want to change exactly 37 bits in this array to the complement value. ie. if bit0 has a '1' I want to change it to '0'. I need to change first 37 such bits to ...
1
vote
1answer
68 views

Java - Modulo Addition of Bytes

I'm trying to perform modulo addition with two bytes in java, getting a third byte as a result. Here's the code I'm using: public static byte modAdd(byte byte1,byte byte2){ int int1 = ...
0
votes
0answers
67 views

Jersey Jackson object serialization issue

I have a a web app that uses jerset/jackson to send/receive JSON objects from POJOs. Here is the POJO. @XmlRootElement public class HeadersPoJo { String status; byte [][] header; ...
0
votes
0answers
18 views

CHIP-8 game odd number of bytes

I have been working on a chip8 emulator and happened to notice that some of the games like litz by david winter have an odd number of bytes. the last few bytes are like "db db" when iewed in a hex ...
0
votes
1answer
53 views

Converting Uint64 to 5 bytes and vice versa in c#

I have an application that expects 5 bytes that is derived of a number. Right now I am using Uint32 which is 4 bytes. I been told to make a class that uses a byte and a Uint32. However, im not sure ...
0
votes
1answer
64 views

Strange behaviour with serial connection sending byte[]

I'm using the following code to try and send a byte array to my arduino but I'm getting strange results. Can anyone see what the issue is? I'm trying to make it so that the Arduino will print out the ...
0
votes
0answers
40 views

Word size in bits to bytes conversion confusion

I have a pretty elementary question which is somewhat confusing me. It will be great to get some refresher on this. Every computer has a word size. The word size is the maximum size of the virtual ...
1
vote
1answer
242 views

Sending serial byte data over TCP/UDP - Visual Basic

What I'm trying to do is build a windows application through VB 2012 Express in VB language to send serial commands over TCP/UDP to networked television screens on the same network. NEC (the company ...
-1
votes
1answer
70 views

Issue with string encoding [closed]

This is my code, I am having trouble with byte encoding. When I get the plaintext string, and hash it, and try to print out the result, it gets messed up. For example, for plaintext = "hi", it prints ...
0
votes
1answer
68 views

Store Date & Time in Java Card 2.2.1 platform

I am developing a smart card application and i have to store Date info. In brief i would like to store last (10) transactions which should contains Date and Time in smart card. Platforms used in: ...
-3
votes
2answers
207 views

Android InputStream Buffer [closed]

byte[] buffer = new byte[1024]; tmpIn = socket.getInputStream(); mmInStream = tmpIn; int bytes = mmInStream.read(buffer); I would like to know what the last line of code implies here?
0
votes
1answer
66 views

What is the least painful way to extract data at the protocol layer in Java?

I'm trying to implement an Android application to connect to the open source software Motion. The goal is to be able to check the status of the application and get the last image captured. I do not ...
0
votes
3answers
132 views

Error when using byte array C++

I'm trying to read a standard 24-bit BMP file into a byte array so that I can send that byte array to libpng to be saved as a png. My code, which compiles: #include <string> #include ...
2
votes
1answer
139 views

Can someone explain the conversion from byte array to hexadecimal string in java

I was recently looking for an encoding to convert the byte array to a hexadecimal string. For one, I found the following from: how to convert hex to byte for the following program? I have already ...
0
votes
2answers
76 views

Get the Value of a byte with Javascript

I'm not sure if the title makes any sense, but here is what I need. This is my byte: ���������ˇ�����0F*E��ù� � I have already managed to get the values of this byte with this php snippet: ...
1
vote
2answers
78 views

Converting string to raw bytes

I wrote a program that works with raw bytes (I don't know if this is the right name!) but the user will input the data as plain strings. How to convert them? I've tried wih a method but it returns a ...
2
votes
4answers
75 views

1l for long, 1f for float, 1d for double, what about byte?

long l = 1l; float f = 1f; double d = 1d; // byte b = 1?; What's the equivalent for byte? Does it exist?
1
vote
2answers
85 views

python single byte function

I have a python function for setting the volume in winamp that appears to only accept a single byte as it's volume control argument. When I try to pass it a string type number it sets the volume to ...
0
votes
0answers
219 views

AES 256 bit encryption. Convert SecretKey into byte and back in android

So, I am doing an AES encryption/decryption. Once the key is generated I want to save it in an SQLite database. For this I am converting my SecretKey to byte[]. My problem is, that when I want to ...
0
votes
2answers
48 views

Reading File in Java and memorize bytes where it stops

i've to read in a .txt file. That File contains 13 parameters seperated by ",". I read it line by line, split after "," and wrote those 13 parameters in a database. But theres one Problem : That file ...
0
votes
1answer
87 views

Write file to NSDocument directory show UIProgressView in iPhone?

I have a pdf file from server. Then I need to load the file to NSDocument directory path and its working fine, but i want to show UIProgressView for store each bytes. How to do this , please help me ...
0
votes
0answers
34 views

converting WAV files to Array

help in converting WAV files to Array, need help in making a program that converts wav to array so that i can store it into a Stack then convert it back into a wav file that plays in reverse. im new ...
0
votes
2answers
40 views

TypeInitialization Exception

I have the following program in C# Basically, the program is throwing a TypeInitializationException. I believe that the culprit is this line: static byte[] buffer = ToByteArray("Hello, this is a ...
2
votes
3answers
85 views

Reading file A and appending to file B, skipping some bytes

I need to append a few BMP images together. As you may know, BMP images have a 54-byte header. I will write my own new header to a new file, then I need to loop through a list of BMP files and ...
-1
votes
3answers
52 views

php how to shorten the file size from Byte unit to larger unit without number rounding

Let I take an example to explain it which I expect. Example: I have file size '3147483648 Bytes', and I want to convert it to following appropriate file size: 2 GB + 70 MB + 333 KB + 512 Bytes. Any ...
0
votes
0answers
154 views

How to calculate checksums from serial data

I have an application written in vb.net which listen to a serial port, the following is the bytes I received: B3 01 33 00 00 00 01 B0 01 33 00 00 00 02 B1 01 33 00 00 00 03 B6 01 33 00 00 00 04 ...
0
votes
1answer
74 views

C++/CX - How to convert a number stored as String^ to byte?

I have a C++/CX Windows 8 application and I need to do something similar to the following conversion: String^ foo = "32"; byte bar = <the numeric value of foo> How can I convert the number ...
0
votes
3answers
81 views

byte[] linked list in java

i am trying to create a linked list witch contains byte arrays: static Queue<byte[]> q = new LinkedList<byte[]>(); static byte buf[] = new byte[1024]; static void queueInit() throws ...
2
votes
1answer
131 views

How to read mixed file of byte and string

I've a mixed file with a lot of string line and part of byte encoded data. Example: --Begin Attach Content-Info: /Format=TIF Content-Description: 30085949.tif (TIF File) Content-Transfer-Encoding: ...
1
vote
1answer
24 views

Change in the audio samples when reading directly from the file using RandomAcessFile?

Iam trying to draw a graph of a sound file. I am doing in such a way that i take the bytes of the sound file using Fileinputstream and change it to the shorts and take the samples of of the sound and ...
1
vote
1answer
55 views

Reading raw bytes from directory in android

How I could read out raw bytes from the sd card (/mnt/sdcard) in android? Sure, I need root access but is it possible in general or not. In linux i can use the dd command dd if=<source> ...
0
votes
5answers
120 views

Java - Converting bytes in to string and comparing against another [duplicate]

I'm just starting to learn Java, and for my first challenge I am trying to read the ID3v1 tag from an MP3. I read the last 128 bytes of an MP3 in to a byte array and split it up from there. To check I ...
1
vote
2answers
130 views

Java unsigned byte[2] to int? [duplicate]

All I need to do is convert an unsigned two byte array to an integer. I know, I know, Java doesn't have unsigned data types, but my numbers are in pretend unsigned bytes. byte[] b = {(byte)0x88, ...

1 2 3 4 5 38