Link to home
Start Free TrialLog in
Avatar of MTXperience
MTXperience

asked on

Reading C++ created binary file in Java...

For my Networking class, my partner and I have been assigned the task of creating a client/server application.  The details of the project are thus:

-Our instructor wrote a small C++ program that writes flight data in a binary file.  His program takes an ascii file of the data, and writes a binary version.

Code for program that creates the binary file:  http://www.atthefrontsystems.com/scheduler.c
Header for the flitdata structure:  http://www.atthefrontsystems.com/sched.h
ASCII sample datafile: http://www.atthefrontsystems.com/sched.ascii
Binary sample datafile: http://www.atthefrontsystems.com/sched.db

-Our task is to create a Java server and client app.  The client will pass fairly simple queries to the server (i.e. list all flights out of a certain airport).    The server will then return the results to the client, who displays the data on the screen.

Details on project: http://www.atthefrontsystems.com/project.pdf

My problem is this.  I can't seem to properly read the binary data.  I'm still a novice programmer in both Java and C++, but it seems to me that the C++ program just wrote most of the file as it's primitive data types.  Taking this into account, I tried to read it in using the "equivalent" Java data types.  For instance, the beginning of the datafile is the Flight#, written (seemingly) as a C-string.  So to test my theroy, I wrote some small code to just read the first char, and print it:

----
import java.io.*;

public class readit {
      public static void main (String args[]) throws Exception {
            FileInputStream fis = new FileInputStream("sched.db");
            DataInputStream dis = new DataInputStream(fis);

            System.out.println(dis.readChar());
      }
}
----

Instead of printing the expected 'A', I get a '?'

Undoubtdly, I'm going about this completely wrong, and would really appreciate some help with this problem.  Should I be RandomAccessing the file instead of using a Stream?  Is there some trick to manual type conversion that I'm overlooking?

If someone could please look through the linked material contained in this rambling post, and "show me the way", I'd be forever in their debt.

P.S.  (It's Friday, April 23d... so I'm not waiting till the COMPLETELY last minute.)  ;)
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

>>Instead of printing the expected 'A', I get a '?'

It's probably not a char (two-byte value) in the sense of a letter code and therefore won't decode properly. If it's a two-byte number then you could do:

System.out.println((int)dis.readChar());
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
how to read it is a little system dependant.
also C strings are zero terminated, whereas Java strings are not.
why exactly does your Java server need to use the binary file created by the C program.
Avatar of MTXperience
MTXperience

ASKER

CEHJ, your code for reading the chars worked splendidly.  Any insight into how to read the ints?  (3 of them... 2 in the Time structure... 1 other)  How about the float?
>>why exactly does your Java server need to use the binary file created by the C program.

Answer:  Because our professor told us too.
try readInt() and readFloat()
> Because our professor told us too.

they are annoying like that aren't they :)

You can read various primitives with DataInputStream. See

http://java.sun.com/j2se/1.5.0/docs/api/java/io/DataInputStream.html
C data types can vary in size though, so you'll need to determine exactly what size is being used.
Thanks guys, we knew about the primitive data type reading... we just made a small oversight in our tests that skewed things at first.  But that all seems to be working fine now.  Again... thanks much for your help.
:-)

You seem to be getting on fine, but you should probably create a class of type, say, FlightInformation and read the binary file such that you're left with a collection of FlightInformation objects
>>In point of fact, it looks like the flight number is four bytes.

But is declared as 5 in sched.h