0
votes
1answer
54 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 …
3
votes
2answers
153 views
+550
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 …
0
votes
4answers
50 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 …
0
votes
2answers
18 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 …
2
votes
2answers
45 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
97 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
38 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 …
0
votes
4answers
217 views
Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?
I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly.
…
2
votes
2answers
75 views
How can I decompile Linux binaries from Windows?
How can I decompile Linux binaries (*.so) from Windows? Thanks.
2
votes
2answers
114 views
RESTful design - how to model entity’s attachments
I am trying to model entity's attachments in REST. Let's say a defect entity can have multiple attachments attached to it. Every attachment has a description and some other properties (last modified, …
0
votes
3answers
90 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);
…
0
votes
3answers
150 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 …
6
votes
3answers
332 views
C# - How do I read and write a binary file?
How do I read a raw byte array from any file, and write that byte array back into a new file?
2
votes
1answer
104 views
Searching for a sequence of Bytes in a Binary File with Java
I have a sequence of bytes that I have to search for in a set of Binary files using Java.
Example: I'm searching for the byte sequence DEADBEEF (in hex) in a Binary file.
How would I go about doing …
