0
votes
4answers
62 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
74 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
64 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
21 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
57 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
101 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 …
5
votes
3answers
216 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
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
39 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
77 views
How can I decompile Linux binaries from Windows?
How can I decompile Linux binaries (*.so) from Windows? Thanks.
0
votes
3answers
91 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);
…
2
votes
2answers
115 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
4answers
218 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
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 …
