0
votes
1answer
35 views
US-ASCII encoding with Odd and Even numbers?
I splitted the list of numbers 1-100 to files of 2 bytes. Then, I noticed that each odd number btw 11-99 needs 2 files, ie 4bytes, while each even number btw 11-99 needs 1 file, 2b …
0
votes
3answers
76 views
Can java floats be sorted by their byte representations?
I'm working in Hadoop, and I need to provide a comparator to sort objects as raw network order byte arrays. This is easy for me to do with integers -- I just compare each byte in o …
1
vote
3answers
95 views
How to get the size of an image in bytes with Delphi?
Hi dudes, my app has 3 controls: TThumbnailList (image viewer from TMS components), TImage, and TLabel. I wish that when I drag an image from TThumbnailList to TImage, and drop it, …
0
votes
0answers
9 views
IOWriteBytesPersec is actually total bytes?
The documentation for the Windows WMI counter
Win32_PerfRawData_PerfProc_Process.IOWriteBytesPersec
says it's number of bytes per second, but it behaves like a total …
2
votes
5answers
63 views
Tips on building a byte protocol
I'm communicating data between devices, and I have to program the protocol as an array of bytes.
Any tips when building protocols at a low-level? .. Eg:
Use a 2 byte header, to …
0
votes
1answer
72 views
Get File Bytes from Resource file in C#
I used to store the resources in the actual project, but I've switched to using a resource file instead. Originally I could ready the bytes for a file, but I'm finding it difficul …
0
votes
3answers
74 views
Visual Studio C++ 2008 Manipulating Bytes?
I'm trying to write strictly binary data to files (no encoding). The problem is, when I hex dump the files, I'm noticing rather weird behavior. Using either one of the below method …
1
vote
5answers
152 views
What is the best way to convert Bytes to Cardinal and vice versa
I have The following code for now.
type
TByte4 = array[0..3] of Byte; // 32-bit
function CardinalToBytes(const Data: Cardinal): TByte4;
begin
Result[0] := (Data shr 24) and 2 …
0
votes
2answers
48 views
Image data of PCX file
I have a big binary file with lots of files stored inside it. I'm trying to copy the data of a PCX image from the file and write it to a new file which I can then open in an image …
24
votes
12answers
935 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 …
0
votes
1answer
75 views
Convert Byte String to Int in Scheme
I have code like this to convert hex into byte string
(define (word->bin s)
(let ((n (string->number s)))
(bytes (bitwise-and (arithmetic-shift n -24) #xFF)
(bitwi …
3
votes
8answers
252 views
In Java, what’s the fastest way to “build” and use a string, character by character?
I have a Java socket connection that is receiving data intermittently. The number of bytes of data received with each burst varies. The data may or may not be terminated by a well- …
0
votes
5answers
115 views
Confusing type conversion - 2 Bytes to Double
I was recently asked to take over a project in which waveform data is sampled from a power converter and sent to an intelligent agent where calculations are done and the appropriat …
0
votes
3answers
83 views
Read bytes from string as floats
I've got a python webserver where small binary files are POST:ed. The posted data is represented as strings. I want to examine the contents of these strings. But to do that, I need …
2
votes
8answers
415 views
Quickest way (performance-wise) to turn a string into a byte[] array in C#
Hi,
What's the fastest way to turn a string into a byte[] array in C#? I'm sending tonnes of string data through sockets and need to optimize every single operation. Currently I …
