Jump to content

Problem reading binary file


Browzer

Recommended Posts

Hello, first poster here. 

 

I have to read bytes from a binary file.  Often, I'm only reading 1 or 2 bytes at a time.  The problem is that what I'm reading is being displayed as garbage.  For example:

 

$fh = fopen($filepath, 'rb') or exit("Can't open file");		
$byte =  fread($fh, 2) or exit("Can't read file");
printf("Byte = %u", $byte);

 

The output is "Version = 0" (if I treat $byte as a string, the output is "Bytes = ?").  That is not correct.  Here is the equivelant Java code reading from the same file:

 

File f = new File(filepath);
FileInputStream fis = new FileInputStream(f);
DataInputStream dis = new DataInputStream(fis); 
short version = dis.readShort();
System.out.println("Version = " + version);

 

The output is "Version = 2", which is correct.

 

Any ideas?  Thanks.

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.