无法使用ByteAarrayOutputStream进行保存和检索

时间:2014-05-08 09:43:26

标签: java rms

我正在制作这个J2ME应用程序,但是当我尝试保存时遇到一些问题我认为它保存得当但我不确定....但是当我检索它时会给出null

这就是我存储它们的方式

        PAR par = new PAR(oldMonPay, newMonPay, oldInterest);
        par.setOldMPay(oldMonPay);
        par.setNewMPay(newMonPay);
        par.setOldInt(oldInterest);

这就是我保存和检索的方式

public static byte[] parseObjPAR(PAR p) {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    DataOutputStream out;

    try {
        out = new DataOutputStream(baos);
        out.writeUTF(p.getNewMPay());
        out.writeUTF(p.getOldInt());
        out.writeUTF(p.getOldMPay());



    } catch (IOException e) {
    }
    return baos.toByteArray();
}

public static PAR parseByteArrPAR(byte[] b) {
    PAR p = null;
    ByteArrayInputStream bais;
    DataInputStream in;

    if (b != null) {
        try {
            bais = new ByteArrayInputStream(b);
            in = new DataInputStream(bais);
            p = new PAR(
                    in.readUTF(),
                    in.readUTF(),
                    in.readUTF());    
        } catch (IOException e) {
        }
    }
    return p;
}

这是我显示检索到的信息的方式,还有另外一个问题,这个东西没有显示所有数据但只显示3条记录。我想是第3个。

 public void populatePAResult(PAR[] p) {
    try {
        for (int i = 0; i < p.length; i++) {
            String oldMP = p[i].getOldMPay();
            String newMP = p[i].getNewMPay();
            String oldI = p[i].getOldInt();



            result1.append("Day : " + oldMP, null);
            result1.append("Time : " + oldI, null);
            result1.append("Technology : " + newMP, null);

        }
    } catch (Exception e) {
    }
}

1 个答案:

答案 0 :(得分:0)

在写入数据的parseObjPAR方法中,订单是:

out.writeUTF(p.getNewMPay());
out.writeUTF(p.getOldInt());
out.writeUTF(p.getOldMPay());

而当你重读它并传递命令时,构造函数的期望是不同的:

PAR par = new PAR(oldMonPay, newMonPay, oldInterest);

所以即使它不是null,加载的数据也会无效。