Top "Byte" questions

A unit of information usually corresponding to 8 bits.

Save byte array to file

I have a byte array (an IEnumerable actually), and I need to save it to a new file containing this …

c# file stream save byte
Write bytes to file

I have a hexadecimal string (e.g 0CFE9E69271557822FE715A8B3E564BE) and I want to write it …

c# string byte hex
Convert integer into byte array (Java)

what's a fast way to convert an Integer into a Byte Array? e.g. 0xAABBCCDD => {AA, BB, CC, DD}

java arrays integer byte
Convert any object to a byte[]

I am writing a prototype TCP connection and I am having some trouble homogenizing the data to be sent. At …

c# .net object byte
How many characters can you store with 1 byte?

1 byte = 8 bits So, does this mean 1 byte can only hold one character? E.g.: "16" uses 2 bytes , "9" uses 1 byte , "a" uses 1 …

mysql character byte
Saving any file to in the database, just convert it to a byte array?

Is converting a file to a byte array the best way to save ANY file format to disk or database …

c# file-io byte
How do I convert Long to byte[] and back in java

How do I convert a long to a byte[] and back in Java? I'm trying convert a long to a …

java type-conversion byte long-integer
How to Get True Size of MySQL Database?

I would like to know how much space does my MySQL database use, in order to select a web host. …

mysql database size byte storage
Convert bytes to int?

I'm currently working on an encryption/decryption program and I need to be able to convert bytes to an integer. …

python python-3.x int type-conversion byte