A binary file is a computer file which may contain any type of data, encoded in binary form for computer storage and processing purposes.
0
votes
0answers
14 views
Display image from database with the type binary/byte[]
Ive stored an image with memorystream to my database, but now i want to display the image in the view but since its the type of binary i dont really know how and im trying to convert it from string. i ...
0
votes
1answer
21 views
print binary file on browser
I am developing my project in JSP/SERVLET.
I have Audio tag in HTML
<audio src=" player.jsp "/>
player.jsp is needed to play from custom starting duration like 01:24
I want my player.jsp to ...
1
vote
0answers
18 views
Is this possible to edit binary RPM compiled file without breaking its functionality
I think it would probably sound wired but I was wondering if it is possible to change a binary file by editing it, without breaking its functionality?
I'm talking about Apache (httpd 2.2.24) RPM ...
0
votes
0answers
14 views
create binary file like maxmind
I have a set of public data I need to give to my clients, some of them uses linux as their main (centos i think) and other uses windows server (local server and web server ), also this file will be ...
0
votes
1answer
36 views
Parse data from buffer of a bin file c
I have a bin file wich contais some data, i am suposed to read that data and store it in variables. The problem is i dont know how to parse the data from the buffer.
FILE *file;
char *buffer;
//Abre ...
3
votes
1answer
36 views
byte[8] to bits[64] parsing
I'm reading a binary file using c#. The specification for the file type says there 6 things packed into a byte[8]. However, it says first variable are the 0-19 bits. Second variable 20-39, third ...
1
vote
0answers
33 views
.net framework execution was aborted by escalation policy because of out of memory
I am using Net framework 4.0 and Sql Server 2012 for the development. There is an error occurring randomly while performing database operation in the web application in asp.net. I have call some sql ...
6
votes
3answers
100 views
Is Python dangerous for dealing with binary files?
I read this on Python tutorial: (http://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files)
Python on Windows makes a distinction between text and binary files;
the ...
0
votes
3answers
86 views
How does binary file should look like?
I'm beginner in programming and I have a problem.
I want to write a structure to my binary file. And I'm not sure with the result. Here's the structure:
struct clientData
{
unsigned int id;
...
1
vote
1answer
29 views
Parsing Binary Files in Client-side JS
I'm wondering if there's any possible way of parsing a binary file in client-side Javascript. I would like to write a page that contains an HTML input form for a binary file ( a sound file is the end ...
-1
votes
3answers
49 views
Reading File Byte by Byte, gives corrupt data
So I was trying to write a C++ program that reads an entire file to the memory (binary).
the memory block is obviously a char array. File reading is successful, but when I loop through the values, ...
1
vote
1answer
35 views
Sharing Linux binaries
I’ve been wondering something for a long time. Is it sane to release ELF (32 and 64 bits) binaries in order people to use them? I know we better have to release sources – that’s what I’m used to doing ...
0
votes
2answers
50 views
App crashes while finding elements in array
The input file is in.wav. I have to read chunks (succeeded) and to read samples to normalize the audio file...
The problem is that it crashes while trying to fing the max and min values of .wav ...
1
vote
3answers
46 views
App crashes though I can't understand the reason [closed]
The input file is in.wav. I have to read chunks (succeeded) and to read samples to normalize the audio file...
The problem is that it crashes while trying to fing the max and min values of .wav ...
-4
votes
1answer
24 views
How to read STL (Stereolithography) binary file? [closed]
I would like to know how to read a binary Stereolithography file;
i tried to search on the net but for the moment nothing found...
If someone have document or somethings like that about binary STL.
...
0
votes
3answers
89 views
C++ reading a file in binary mode. Problems with END OF FILE
I am learning C++and I have to read a file in binary mode. Here's how I do it (following the C++ reference):
unsigned values[255];
unsigned total;
ifstream in ("test.txt", ifstream::binary);
...
1
vote
1answer
30 views
vbscript serialize integer to byte array
I want to write to a binary file the content of a vbscript variable that is a number. Is there any way to access the binary representation as a byte array? ( of integers, floats, etc). I have been ...
0
votes
1answer
54 views
What can I do to make this binary file reader faster?
What I currently have is a pretty naive implementation that chunks the data and processes it. It runs in around 34 seconds for a file of 816mb, but I want it to be faster than that. I've already ...
0
votes
0answers
22 views
receive file with php, sent with XMLHttpRequest level 2
I am trying to send a binary file with XMLHttpRequest Object with the method I learned from an article Sending and Receiving Binary Data I cannot find any tutorial, reference or article about how to ...
0
votes
1answer
24 views
Access violation error when getting input from a binary file
Okay, so I'm trying to read input from a binary file. I've changed this code a bit, but with this version, I'm getting an access violation error... So it's trying to access something that isn't there. ...
0
votes
0answers
34 views
copying .png files causes segmentation fault
i am writing a function to copy binary files in C. The function works for all files apart from one PNG file.
Here is my code:
void copyFile(char* fileSource, char* fileDest){
int *buf= ...
1
vote
1answer
63 views
updating binary file containing structs in c, offsets changing to corrupt rest of file
I'm trying to write a method that will, given a file containing values to update or append, will update a second binary file.
Apparently, when I overwrite a struct in the binary file, the offsets ...
0
votes
0answers
42 views
Matlab binary file to Fortran
I wrote a Matlab script that reads a binary file saved in FORTRAN (which happens to be the contents of a 4-D array). The array is stored in a Matlab variable. Next, I do the opposite operation, I ...
0
votes
1answer
37 views
Matlab -> Python. Reading heterogeneous 1D binary array from disk
Say we have a simple, small file with a 1D array holding different value types, with a specific structure (first item is MATLAB uint, second value is MATLAB uint, and the rest of values are float)
...
0
votes
1answer
77 views
Trying to write a binary file, getting a text file
Trying to save my game by writing the game characters to a binary file. Unfortunately, my binary file is writing to the file as if it were a text file.
If I just instantiate a string and call the ...
0
votes
1answer
40 views
Using variables in gnuplot binary file plotting
I am plotting direct access binary files output from my simulations using gnuplot and want to write a simple generic script that will plot the files without me having to edit the file a lot. Here is ...
0
votes
0answers
27 views
Tracking object/output files in separate Git
Sometimes when doing git checkout some_old_commit or git bisect I think it would be useful to get not just source files, but also all/some generated files (to test things without waiting for ...
0
votes
1answer
76 views
Packing and Unpacking binary float in python
I am having some trouble with packing and unpacking of binary floats in python when doing a binary file write. Here is what I have done:
import struct
f = open('file.bin', 'wb')
value = 1.23456
data ...
0
votes
0answers
22 views
Byte Array To Compact 3.5 Database
I want to store the byte array data in the Sql Compact 3.5 database but could not insert data please help.
XDocument xDocument = XDocument.Load(filePath);
byte[] arr = ...
1
vote
1answer
77 views
Quicksort using a binary file of ints with duplicates. Having trouble with recursion
First off, I want to state that this is homework.
Often times we'll have assignments that I'll post questions for after we've finished it and I'd like to continue working with it to improve my ...
1
vote
4answers
66 views
Preserving file pointer between function calls
I have a code where I'm accessing a binary file several times. Each time I call the function, it opens the file for reading and it reads out only the required number of bytes (say n bytes each time).
...
0
votes
2answers
56 views
writing a CString into a .bin file
I have a CString with 'HEX' values, which looks something like this: "0030303100314a"
Now I want to store this into a bin file, so that if I open it with a hex-editor, the data us displayed is ...
0
votes
3answers
62 views
Issue writing/reading a uint to a binary file
I am writing a struct to a binary file in C.
The char* items and the uint8 items are writing fine, but i seem to be having an issue writing the uint32 item.
my writing code is here.
void ...
0
votes
2answers
58 views
fread fails to read an unsigned int? [C]
I have a Person Struct as the following:
typedef struct Person {
char name[NUM_CHARS];
unsigned int age;
} Person;
where #define NUM_CHARS 20.
I want to write this structure to a binary ...
0
votes
2answers
72 views
C++ loading data from part of a file
I want to keep a bunch of simple structures (just 3 ints per structure at the moment) in a file, and be able to read back just one of those structures at any given time.
As a first step, I'm trying ...
1
vote
1answer
217 views
Writing/Reading 2D array to Binary File C++
I am trying to write data from a 2D array into a binary file. I am only writing the data that has a value greater than 0. Therefore, if the data is is 0, it will not be written to the file. The data ...
0
votes
1answer
43 views
What is the pack template for a sequence of floats?
I have N number of floats in each line of the input text file. I'm trying to convert them into binary format (sequence of 4 byte floats).
Sample line from input -12.391 -5.301 -12.854 0.438 ...
0
votes
0answers
63 views
Read a file as binary data in JavaScript on the client side
As the question states, I'd like some way to read files on the client side using JavaScript (is there any other possible alternative?).
These files(images mostly) are part of the webpage, and so I do ...
0
votes
1answer
81 views
How to write members of a class to a binary file using cpp?
I'm writing a small back-end in cpp where I have to write some crossword data into a binary file. I have created an XWPuzzle class with all its data members public, and xWord is an object of this ...
1
vote
1answer
101 views
Writing Bits into Binary File in VB.Net
I need to create a file that include binary input but when i do this it take as byte not bit
for example if i want to add binary represent of "apple"
it writes to file ...
1
vote
2answers
237 views
Is it possible to edit a binary file using Windows command line?
Is there a way in Windows to edit a binary file, from the command line? i.e. a way that could be written into a batch file?
I want to be able to edit a single byte, at a known position, in an ...
0
votes
0answers
79 views
Radix sort using bitwise operations
I need to create a method that does a radix sort which retrieves individual bits from a value using the bitwise operators(>>,<<,&,|).
The file looks something like this:
0100
1
0011
110
...
0
votes
2answers
192 views
Read and Write Binary files-FORTRAN and C++
I am writing binary file with the following code in FORTRAN:
Character(50) S
Real*8 A
A = 25.002
OPEN(1,file='data.bin', access='stream',action='write')
WRITE (1) A
CLOSE(1)
And trying ...
2
votes
4answers
95 views
C: pointers mixup
#include<stdio.h>
#include<stdlib.h>
typedef struct{
char cStdName[50];
int nStdNum;
char cStdClass[4];
float dStdAvg;
}student;
student* students;
int ...
4
votes
2answers
249 views
Delphi How to search in binary file faster?
I have a binary file (2.5 MB) and I want to find position of this sequence of bytes: CD 09 D9 F5. Then I want to write some data after this position and also overwrite old data (4 KB) with zeros.
...
0
votes
1answer
35 views
inconsistent endianess in binary file
I wrote a program to write numbers into binary file, a snippet is as below:
u_int16_t N=150;
u_int16_t seed=3;
FILE * outfile, *infile;
outfile=fopen("tempfile","wb");
//write ...
-3
votes
1answer
91 views
How can I read binary file in java which is written in c# [closed]
I have to read binary file which is written in c#. And I know this file format. I want to learn if is it possible. And how can I do it if it is possible.
1
vote
2answers
156 views
how to create buffer in c++ to create new file
Please have a look on the code. I am a beginner and this is first time I am creating a buffer in C++. How to create buffer in C++ to create new file after reading old contents into that buffer and ...
1
vote
3answers
123 views
C++, Storing a String containing binary into a text file
I am currently attempting to store a string containing binary code.
When I attempt to write this string to a text file it simply stores each 0 and 1 character in a string format, rather than storing ...
1
vote
1answer
300 views
Convert VB6 Open For Binary to VB.Net (Fixed String Array)
I am trying to convert a VB6 app that reads a binary file. I have listed the VB6 and the converted VB.Net code I am trying to use. I have tried everything I can think of and I either get Unable to ...





