0

レコードのバイナリ ファイルがあります。各レコードの形式は次のとおりです。各レコードは、2 つの整数、車両数と関係者数で構成されます。浮動小数点数、重大度コード。事故の日付を含む文字列。この日付は、次の形式を取ります: 3 文字の月の省略形の後にスペースが続き、次に日付の後にカンマが続き、最後に年が 2 桁または 4 桁の数字で表されます。

以下はコードです。しかし、適切な答えが得られません..

私のコード:

import java.io.*;

public class BoydBAssignment5_Ver1 {

    public static void main(String s[]) {
        DataInputStream input1;                     //you need these two variable for a file
        File            infile1;
        input1 = null;

        BoydBAssignment5_Ver1 tfr;                  //this is your program object
        tfr = new BoydBAssignment5_Ver1();
        try{    //try for open
            infile1 = new File("assign5.data");
            input1 = new DataInputStream(new FileInputStream(infile1));
        } catch (IOException i){
            i.printStackTrace();}

        tfr.read_records(input1);
        try {   //try for close
            input1.close();
        } catch (IOException i) {
            System.out.println("error in close");
        }
    }

    private void read_records(DataInputStream is2) {
        int totalVehicles=0,totalPersons=0;
        int numVehicles;
        int numPeople;
        char ch;

        try {   //try for read
            while(true) {
                numVehicles=is2.readInt();
                if(numVehicles==0)
                break;

                totalVehicles+=numVehicles;
                System.out.print("\n"+numVehicles+"\t");
                numPeople=is2.readInt();
                if(numPeople==0)
                break;

                totalPersons+=numPeople;
                System.out.print(numPeople+"\t");
                System.out.print(is2.readDouble()+"\t");
                /*System.out.print(is2.readLine()+"\n");
                    for(int k=0;k<4;k++)
                    {
                        is2.readByte();
                    }*/
                while((ch=(char)is2.readByte()) != 0x00) {
                    System.out.print(ch+"");
                }
            }

            System.out.println("\nTotal no of vehicles:"+totalVehicles);
            System.out.println("Total no of Persons:"+totalPersons);
            write_in_file(totalVehicles,totalPersons);
        } catch (IOException i) {
            System.out.println("error in write");
        }

    }

    private void write_in_file(int totalVehicles, int totalPersons) {
        try {
            FileWriter fstream = new FileWriter("finalOutput.data");
            BufferedWriter out = new BufferedWriter(fstream);
            out.write("Number of vehicles involved"+"\t"+totalVehicles);
            out.write("\nNumber of persons involved"+"\t"+totalPersons);
            out.close();
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

}

出力::

148308 1 4.774904982E-314
189429102 540161068 1.4275957977117199E-71
512 576 6.903600071305329E-93 8,98 37966848 512 1.7668797952966E-311
Mar 4,2006 37966848 256 2.8513257442947E-311
Apr 8,2011 38683904 512 2.3101107177838E-311 Jun 14, 06 38683904 256 6.792508527386E-312 Apr 22,2005 38683904 256 1.2216329768334E-311 Oct 1,04 38683904 768 2.3099515681247E-311 Jul 9,83 38813952 256 6.802588006634E-312 Aug 4. 1998 38813952 512 6.802588006634E-312 Jun 14, 2011 38813952 512 1.7667206456376E-311 99 年 9 月 8 日 39344128
総車両数:576033218 総人数:540165485

助けてください..よろしくお願いします!!

4

1 に答える 1

2

推測では、データはリトルエンディアンとして保存されています。DataInputStreamビッグエンディアンです。(エンディアンが不明な場合は、http://en.wikipedia.org/wiki/Endiannessを参照してください)

最も簡単な方法は、ファイルを単一のダイレクトに読み込みByteBuffer、バイト オーダーを設定できるようにすることです。

于 2012-07-19T06:47:23.497 に答える