3
votes
8answers
314 views
vector <unsigned char> vs string for binary data
Which is a better c++ container for holding and accessing binary data?
std::vector<unsigned char>
or
std::string
Is one more efficient than the other?
Is one a more 'co …
0
votes
1answer
22 views
Java libraries for reading meta data from .img, .osc and .mccd files
I need to read meta data from .img, .osc and .mccd files.
Can you anyone recommend any libraries or provide any pointers as to how I would go about doing this. Eventually I need t …
0
votes
3answers
40 views
Performance in tables with binary data/images
I made a people maintenance screen. The client want me to store the photo of every person in the database, and I made it without problems. I have a separate table for the images wi …
1
vote
1answer
101 views
C#, writing binary data
I have a problem tring to write to a binary file.
//This is preparing the counter as binary
int nCounterIn = ...;
int nCounterTotalInNetwork = System.Net.IPAddress.HostToNetworkO …
1
vote
3answers
91 views
Reading/writing binary structures: how to simplify this code?
Hi folks, I'm writing a network app, which sends and receives a lot of different kinds of binary packets, and I'm trying to make adding new kinds of packets to my app as easy as po …
1
vote
1answer
62 views
Synchronizing Large Unversioned Files Within Subversion Checkout
We've been working with a Subversion repository for some time now for a research lab and have repeatedly been presented with a common issue:
We want to version all of the code, an …
4
votes
4answers
824 views
Tools to help reverse engineer binary file formats
What tools are available to aid in decoding unknown binary data formats?
I know Hex Workshop and 010 Editor both support structures. These are okay to a limited extent for a known …
0
votes
6answers
159 views
Python binary data reading
A urllib2 request receives binary response as below:
00 00 00 01 00 04 41 4D 54 44 00 00 00 00 02 41
97 33 33 41 99 5C 29 41 90 3D 71 41 91 D7 0A 47
0F C6 14 00 00 01 16 6A E0 68 …
1
vote
4answers
794 views
C#/.NET - Custom Binary File Formats - Where to Start?
I need to be able to store some data in a custom binary file format. I've never designed my own file format before. It needs to be a friendly format for traveling between the C#, J …
0
votes
4answers
178 views
Human-readable binary data using Python
My work requires that I perform a mathematical simulation whose parameters come from a binary file. The simulator can read such binary file without a problem.
However, I need to p …
0
votes
1answer
97 views
Returning binary content from a JPF action with Weblogic Portal 10.2
Hi,
One of the actions of my JPF controller builds up a PDF file and I would like to return this file to the user so that he can download it.
Is it possible to do that or am I for …
0
votes
1answer
27 views
Is it safe to convert a mysqlpp::sql_blob to a std::string?
I'm grabbing some binary data out of my MySQL database. It comes out as a mysqlpp::sql_blob type.
It just so happens that this BLOB is a serialized Google Protobuf. I need to de …
5
votes
4answers
200 views
Reverse engineering a statistics data file from my insulin pump controller
This may or may not be a grey area subject, though my intentions are certainly not, so my intention is not to stir up an ethical debate on the topic of reverse engineering.
I'm …
0
votes
2answers
69 views
Lamp / Cakephp: Streaming an image : Binary 0x00 replaced by 0x20
I'm trying to create a script that pulls an image out of the database and displays it to the user, called by <img src="viewImage/someImageName">
But the problem I'm having i …
0
votes
6answers
108 views
Storing XML document in pre-parsed binary format
My application need to store large amounts of XML-like hierarchical information with the following requirements:
Fast to read
Minimal memory consumption
Typed data instead of mer …
