6
votes
3answers
227 views
JPG+Zip File Combination Problem with Zip Format
Hopefully you've heard of the neat hack that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG …
1
vote
3answers
172 views
What is the byte signature of a password-protected ZIP file?
I've read that ZIP files start with the following bytes:
50 4B 03 04
Reference: http://www.garykessler.net/library/file_sigs.html
Question: Is there a certain sequence of bytes that indicate a ZIP …
0
votes
4answers
67 views
C# how to write long type array to binary file
i have a long type array. How to write this array to binary file.
Problem is that if i convert it into byte array some values are changed.
The array is like- long array = new
long[160000];
…
0
votes
2answers
76 views
C# writing binary data to a binary file
I have n no of variable length byte array like this.
(ascii representation)
1 0 obj<<.........>>endobj
2 0 obj<<...........................>>endobj
3 0 …
0
votes
1answer
66 views
Writing files in bit form to a file in C
i am implementing the huffman algorithm in C. i have got the basic functionality down upto the point where the binary codewords are obtained. so for example, abcd will be 100011000 or something …
0
votes
2answers
25 views
Close pop up window after binary file is sent to browser
Hi,
Is there a way to close a pop up window after the page writes binary data (PDF) to the browswer?
Here are the details:
Whenever my web appilcation needs to print, it will pass some parameters …
0
votes
4answers
66 views
Extract Strings from Binary Files in VB.Net
I want to scrape string data from some binary text files that contain embedded SQL statements. I don't need any fancy cleanup--just some way to extract the readable text. I'm using vb.net, but a …
2
votes
2answers
49 views
How to read a binary file and display the output as a float in C?
Hi,
I'm trying to read 4-byte numbers stored in a binary file, but I don't seem to be getting the correct output. Here's my code:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
…
0
votes
3answers
106 views
parsing binary file in C#
I have a binary file. i stored it in byte array. file size can be 20MB or more. then i want to parse or find particular value in the file. i am doing it by 2 ways ->
1. By converting full file in …
1
vote
2answers
49 views
How can I interpret a legacy binary data file without documentation?
Data is often stored in program-specific binary files for which there is little or no documentation. A typical example in our field is data that comes from an instrument, but I suspect the problem is …
0
votes
1answer
40 views
Can I hex edit a file in Visual Studio?
I want to edit a binary file but I don't want to use another tool other than Visual Studio because it's a pain to switch back and forth.
Is there perhaps a add-in or some built in functionality …
2
votes
2answers
689 views
Reading compound documents in c#
Hi -
I'm starting a project which requires reading outlook msg files in c#. I have the specs for compound documents but am having trouble reading them in c#. Any pointers would be greatly …
3
votes
4answers
427 views
How to reverse engineer binary file formats for compatibility purposes
I am working of a file preparation software to enable translators work easily and efficiently on a wide range of file formats.
As far as text-based formats (xml, php, resource files,...) are …
2
votes
2answers
77 views
How can I decompile Linux binaries from Windows?
How can I decompile Linux binaries (*.so) from Windows? Thanks.
0
votes
3answers
93 views
fread terminating mid-read at null values. Also reading in garbage past expected data.
I am reading in pieces of a binary file using a FILE object in C++. Here is the fseek and corresponding fread call:
fseek(fp, startLocation, SEEK_SET);
fread(data, m_sizeOfData, 1, fp);
…
