Tagged Questions
0
votes
1answer
39 views
Read and write file bit by bit
There is a .jpg file for example or some other file. I want to read it bit by bit. I do this:
open(FH, "<", "red.jpg") or die "Error: $!\n";
my $str;
while(<FH>) {
$str .= unpack('B*', ...
0
votes
2answers
31 views
is this correct ? how to load bytes from a file? [duplicate]
I need to load bytes from a file using Java. is this right ?
InputStream ips=new FileInputStream(file);
InputStreamReader ipsr=new InputStreamReader(ips);
BufferedReader br=new BufferedReader(ipsr); ...
0
votes
0answers
78 views
Read and write bytes in C (from/in file)
I have to solve the following problem in C for the operating systems class:
At the command line three file are given, two for input, one for output.
The output file is obtained from input files, as ...
1
vote
1answer
38 views
How to write in nasm without writing null bytes?
Pretty simple problem.
This nasm is supposed to write a user-written message (i.e. hello) to a file, again determined by user input from an argument. It does this just fine, but the problem is, it ...
0
votes
1answer
42 views
c++ cli comparing hexadecimal bytes from a file not working
I have this file called ab.exe it contains this in hexadecimal
...
0
votes
1answer
79 views
Best efficient way to write a big string of bytes to file
I am writing a string of bits to a file like this :
//String to ByteArray
byte[] b = new BigInteger(encodedFile.toString(), 2).toByteArray();
//Writing
FileOutputStream fos = new ...
0
votes
2answers
48 views
Reading File in Java and memorize bytes where it stops
i've to read in a .txt file. That File contains 13 parameters seperated by ",". I read it line by line, split after "," and wrote those 13 parameters in a database. But theres one Problem :
That file ...
1
vote
1answer
168 views
Convert Binary stream into byte?
I have binary stream and I want it to convert in bytes. after that I want to download it into SD card.
My web services:
POST /**********Mobile/**********.asmx HTTP/1.1
Host: ***.***.*.*
...
0
votes
1answer
119 views
Implications of reading `byte` vs. `bytearray` from file in python
I constantly get errors when reading from file as bytes, if I use upon them ord() or chr(). What could be the reason?
0
votes
4answers
67 views
Getting byte value for numbers between 0 and 255?
I need to get the byte / 8 bit representation for numbers between 0 and 255. Is there any comfortable way to do this in Java? Seems like most methods are intended to be work with 4 byte long integers? ...
0
votes
3answers
69 views
Binary editing in java
I have a file that I am trying to binary edit to cut off a header.
I have identified the start address of the actual data I want to keep in the file, however I am trying to find a way in Java where I ...
0
votes
2answers
69 views
How to first check files on equality before doing a byte by byte comparison?
I am writing a program that compare a lot of files.
I first group files by filesize. Then I check them byte by byte between grouped files. What params or propeties can I check before byte by byte ...
-3
votes
2answers
142 views
(JAVA) send a file through socket adds extra nul and corrupts file(copy) [closed]
i'm an intermediate java programmer , i was attempting to send a file through
sockets, with this code and i obtain a new
k.bmp(source) named k7.bmp , everything alright , less the k7.bmp has an extra ...
0
votes
3answers
257 views
C# split byte array from file
Hello I'm doing an encryption algorithm which reads bytes from file (any type) and outputs them into a file. The problem is my encryption program takes only blocks of 16 bytes so if the file is bigger ...
0
votes
1answer
52 views
How to store bytes or values in the most compact way?
I am wondering if there is a file format that will enable me to store values in the format as indicated below. I want the file format to be as efficient as possible (I.E no extra information, apart ...
2
votes
1answer
62 views
How to truncate x bytes from file
Quite simply, how do I remove x amount of bytes, or a string from (the end of) a file..? I know how to append bytes — I need to do the opposite.
Unfortunately I haven't found any examples of how to ...
0
votes
1answer
41 views
Find the same file
Consider 1000 files in the folder.Now i want to find the same file in that folder.
I tired it by byte by byte comparison but it took long time to finish.
This is the code
fs1=new ...
0
votes
2answers
74 views
File Comparision by Byte
I want to compare two same size files byte by byte for duplicacy.
I'm using this code to compare but it's not working:
boolean match=true;
BufferedInputStream fs1;
...
0
votes
1answer
110 views
PHP script to delete zero byte files
it's been awhile since I asked a question here - you've done a decent job of teaching me. ; )
Anyway, I'm having a problem with zero byte files. Sometimes, randomly it seems, the server I'm working ...
2
votes
2answers
216 views
PNG File format and Image bytes?
I am currently trying to write a program to encode text into a png file only changing the least significant bit for each letter i want to encode in the picture, example
I have a 'A' which is 65 and I ...
0
votes
0answers
48 views
Reading from files - A faster approach than this
I am having two files , one having a list of integers and one having a list of strings. I am using the code below to read them and it works perfectly. But the time taken is a bit of concern . I want ...
1
vote
2answers
259 views
Visual C++ 2010 - Fastest method to convert a 10 GB BYTE array?
Question: What is the fastest method to convert a 10 GB BYTE array to a standard string with hex format in Visual C++?
What I am doing: I am using std::fread(...) to read a very large file into a ...
0
votes
1answer
418 views
Encrypt byte array using vigenere cipher in java
I have to encrypt some file (jpg) using vigenere cipher. I wrote some code, but after encryption and decryption my file is corrupted. The first 1/4 of image displays okay, but the rest of it is ...
-5
votes
2answers
127 views
How do I create a java.io.File from a byte [] [duplicate]
Possible Duplicate:
Creating a File from byte array
Hello everyone I have a problem
I have an array of bytes loaded with a file .doc inside
I need to convert this byte array to a ...
1
vote
1answer
1k views
Perl: Reading binary file one byte at a time
I'm writing a tool that needs to read a binary file one byte at a time, process each byte, and potentially take some action depending on the processed value. But for some reason the values Perl is ...
0
votes
1answer
63 views
How to change byte on specific addres. Python 2.2
I need to write program that will change bytes in file in specific addreses. I can use only python 2.2 it's game's module so... I read once about mmap but i can't find it in python 2.2
1
vote
1answer
163 views
Accessing raw image bytes from iPhone to computer
I am doing image processing on the iPhone, but I need to get the raw bytes outside of cocoa so I can optimise the algorithm on a more image friendly platform like Matlab. I am using Brad Larson's ...
0
votes
2answers
316 views
Handling and working with binary data HEX with python
I'm trying to do a comparison of some byte values - source A comes from a file that is being 'read':
f = open(fname, "rb")
f_data = f.read()
f.close()
These files can be anything from a few Kb to a ...
1
vote
1answer
317 views
Android : convert an audio file into array of complex numbers (for FFT)
In order to process a FFT on an audio signal, I first need to convert my audio file into an array of complex numbers. I still don't understand if this part requires to save a .CSV of .TXT file on my ...
0
votes
1answer
289 views
Read File assembly language
I'm writing this file in assembly language and it reads a file which is 64,000 bytes long. I don't want to store it in RAM so I need to make it so that it reads one byte, manipulates the data, then ...
-4
votes
1answer
210 views
Android development - Java: How can i make byte array from File and back [closed]
I am working on a small project, it should be something like remote file explorer via bluetooth.
I have this File:
File directory = Environment.getExternalStorageDirectory();
I need to make a byte ...
0
votes
1answer
133 views
C++/SDL: Creating a FILE structure using a byte array
The SDL_image API allows you to pass in a FILE* and get an SDL_Surface*.
Currently, I'm designing a map archive.
One of the files is a tileset. It will be a PNG image (Great format with it's lossless ...
2
votes
2answers
856 views
Read bytes from a binary file with JavaScript, without jQuery
I'm trying to make a javascript emulator, and i'd like it to be very light, so I don't want to load the "ROMs" with jQuery and jDataView. Si I made my own ROM loader in pure JS.
It works pretty well ...
0
votes
1answer
4k views
Java: Reading bytes from a .txt file LINE BY LINE
Please have a look at the following code
import java.io.*;
import java.util.ArrayList;
import java.util.List;
public class FileCopy2
{ public static void main(String[]args)
{
...
0
votes
1answer
178 views
Extracting a binary file from other file encoding\conversion mistake
I have two binary files, "bigFile.bin" and "smallFile.bin".
The "bigFile.bin" contains "smallFile.bin".
Opening it in beyond compare confirms that.
I want to extract the smaller file form the ...
0
votes
2answers
79 views
error: indexoutofbound. when read some bytes of file
I want to read some bytes of a file, from "offset" and it'length is "size". So i use FIleInputStream and this code:
byte[] data = new byte[size];
FileInputStream fis=new ...
0
votes
1answer
700 views
Write byte to ofstream in C++
I have char array, and i want to write it to txt file, but in bytes.
ofstream sw("C:\\Test.txt");
for(int i = 0; i < 256; i++)
{
sw << (byte)myArray[i];
}
This will write chars into the ...
0
votes
1answer
134 views
what could be the correct regex for reading first few bytes in fixed size fron file and reading remaining bytes from first regex's (.*) part in ruby?
I am reading one file using ruby in which I have written regexp in my code as below assuming it will read first 4 bytes from file, next four bytes, next four bytes, rest of the bytes in file except ...
0
votes
2answers
145 views
What could be Regex for reading first line of file with first few bytes and then rest of file content except last 8 bytes of last line of file?
I am processing one binary file in which I want to retrieve first 4 bytes, next 4 bytes, again 4 bytes and then rest of the file contents except last 8 bytes of last line.
I have tried with this line ...
1
vote
4answers
190 views
Reading from a text file in C
I am having trouble reading a specific integer from a file and I am not sure why. First I read through the entire file to find out how big it is, and then I reset the pointer to the beginning. I ...
1
vote
1answer
555 views
Write byte array to middle of an existing file in C#.NET
Is it possible to write (Append - No Overwrite) to an existing binary file.
I have to open a file in read write mode and then randomly write byte arrays to it at the position I specify in the file.
...
1
vote
2answers
143 views
std::fstream seems to read in different sizes
I'm working on ubuntu 10.04 and a gcc. I have a binary file with my own magic number. When I read the file, the magic number is not the same. The streams seams to be correct.
Writing magic number :
...
2
votes
2answers
813 views
how to find the number of bytes in a file?
i am making application in C#. Here i want to find out the number of bytes in particular file. Here i am using code as
using(FileStream fs=new FileStream(filename,FileMode.Open,FileAccess.Read))
{
...
1
vote
2answers
578 views
Reading a byte at certain position of a file in C++
Is it possible to open a file and reading an only byte at a certain position without having to load all the file into an array?
For example, having a file of 10 bytes, and reading the 5th.
3
votes
5answers
461 views
Displaying file size: 1000b = 1kb or 1024b = 1kb?
I am making a iOS app where the size of some files is diplayed in MB. My question is if it is correct to calculate 1000 byte = 1kb or 1024 byte = 1kb ? I have seen that Finder on the mac calculates ...
2
votes
2answers
1k views
In j2me How to Save Image in Phone Memory for s40?
Images are locally saved in that application.I want save image from j2me application
to phone memory.Is there is any encoder or convert byte array?How to Save it?Pls help me....
try {
...
2
votes
3answers
400 views
Reading numbers from file in C
I am primarily a Python programmer, but I've been working with C because Python is too slow for graphics (20 fps moving fractals FTW). I'm hitting a sticking point though...
I wrote a little file in a ...
2
votes
1answer
432 views
stream to byte array
I'm creating a program in native C++ (no clr). I'm using a toolkit which converts data and normally writes it to a file or stdout.
The issue is that I want to write it to an array and I don't know the ...
0
votes
0answers
188 views
Converting from raw HEX bytecode into Files
Is there any program or other method in which you can convert from raw Bytes in hexadecimal format into an actual file?
2
votes
4answers
598 views
C# prepending bytes to the beginning of a file?
What is the fastest and most efficient way to prepend bytes at the beginning of a file? Basically, I want to open a file and then add a number of bytes to it. I thought of using a loop, but given that ...


