0

Binary De/Serialization を処理するクラスを構築しています。メソッドはとopen()を受け取ります。これらは、パスを引数として受け取る別のメソッドによって作成されます。は、実際にはです。がコンテンツを含むメソッドに到達していることを証明するために、すでにいくつかのテストを行いましたが、実際にはそうです。しかし、それを使用して設定しようとすると、機能しません。例外はスローされませんが、そこからバイトを読み取ろうとすると、常に.InputStreamOutputStreamopen()InputStreamByteArrayInputStreamInputStreamopen()ObjectInputStream-1

BinaryStrategy クラス

public class BinaryStrategy implements SerializableStrategy{
  public BinaryStrategy(){
    try{
        open("products.ser");
    }catch(IOException ioe){

    }
  } 
  @Override
  public void open(InputStream input, OutputStream output) throws IOException  {
    try{
        this.ois = new ObjectInputStream(input);
    }catch(Exception ioe){
        System.out.println(ioe);
    }
    this.oos = new ObjectOutputStream(output);
  }
  @Override
  public void writeObject(fpt.com.Product obj) throws IOException {
    oos.writeObject(obj);
    oos.flush();
  }
  @Override
  public Product readObject() throws IOException {
    Product read = new Product();
    try{
        read.readExternal(ois);
    }catch(IOException | ClassNotFoundException exc){
        System.out.println(exc);
    }
    return read;
  }
}

インターフェイス SerializableStrategy (デフォルトのメソッドのみ)

    default void open(Path path) throws IOException {
    if (path != null) {
        ByteArrayInputStream in = null;
        if (Files.exists(path)) {
            byte[] data = Files.readAllBytes(path);
            in = new ByteArrayInputStream(data);
        }
        OutputStream out = Files.newOutputStream(path);
        open(in, out);
    }

製品クラス

public class Product implements java.io.Externalizable {
    @Override
public void writeExternal(ObjectOutput out) throws IOException {
    out.writeLong(getId());
    out.writeObject(getName());
    out.writeObject(getPrice());
    out.writeObject(getQuantity());
}

@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
    this.setId((Long)in.readLong());
    this.setName((String) in.readObject());
    this.setPrice((Double) in.readObject());
    this.setQuantity((Integer) in.readObject());
}

属性がSimplePropertysであるため、パーソナライズする必要がありました

public void open(InputStream input, OutputStream output)私はテストするために次のようにいくつかのことをしようとしました:

    public void open(InputStream input, OutputStream output) throws IOException {
    try{
        System.out.println(input.available() + " " + input.read() + " " + input.read());
        //is gives me: 181 172 237
        //181 is the exact size of the file I have, so i think that the Output is ok
        //172 237 - just some chars that are in the file
        //I know that for now on it is going to give me an excepetion because
        // of the position of the index that is reading. I did it just to test
        this.ois = new ObjectInputStream(input);
    }catch(Exception ioe){
        System.out.println(ioe);
    }
    this.oos = new ObjectOutputStream(output);
}

そして、他のテスト:

public void open(InputStream input, OutputStream output) throws IOException {
    try{
        this.ois = new ObjectInputStream(input);
        System.out.println(ois.available() + " " + ois.read());
        //here is where I am receiving -1 and 0 available bytes!
        //so something is going wrong right here.
        //i tried to just go on and try to read the object,
        //but I got a EOFException, in other words, -1.
    }catch(Exception ioe){
        System.out.println(ioe);
    }
    this.oos = new ObjectOutputStream(output);
}
4

3 に答える 3

0

ObjectInputStream問題は、私が間違った方法で読んでいたことでした。それは次のようでした:

read.readExternal(ois);

しかし、正しい方法は次のとおりです。

read = (Product)ois.readObject();

ObjectInputStreamそして、そうすることで例外が発生していたため、使用時の の構築に問題があると思いましたByteArrayInputStream。なんて大きな間違いでしょう!:D

助けようとしたすべての人に感謝します。

于 2016-05-14T16:56:13.807 に答える
0

ObjectInputStreamは、内部的BlockDataInputStreamに読み取り操作を実行します。これは、read. 「ブロック」として落ちる場合にのみバイトを読み取ります

出力も私が期待していたものではありません。しかし、 のコードを見るとObjectInputStream.read()、それは理にかなっています。

readObjectしたがって、あなたの場合、オブジェクトの状態を復元するためだけに使用するのが理にかなっています。

あなたのコードをもう一度...

class SimpleJava {

    public static void open(InputStream input, OutputStream output) throws IOException {

        try {
            ObjectInputStream ois = new ObjectInputStream(input);
            System.out.println(ois.available());// 0
            System.out.println(ois.available() + " " + ois.read() + " " + ois.read());// 0 -1 -1
            // Reads the object even if the available returned 0 
            // and ois.read() returned -1
            System.out.println("object:" + ois.readObject());// object:abcd
        }
        catch (Exception ioe) {
            ioe.printStackTrace();
        }
    }

    static void open(Path path) throws IOException {

        if (path != null) {
            ByteArrayInputStream in = null;
            if (Files.exists(path)) {
                byte[] data = Files.readAllBytes(path);
                in = new ByteArrayInputStream(data);
            }
            OutputStream out = Files.newOutputStream(path);
            open(in, out);
        }
    }

    public static void main(String[] args) throws Exception {

        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(new File("/home/pradhan/temp.object")));
        oos.writeObject("abcd");//writes a string object for us to read later
        oos.close();
        //
        open(FileSystems.getDefault().getPath("/home/user/temp.object"));
    }
}

これが出力です...

0
0 -1 -1
object:abcd
于 2016-05-14T17:41:34.330 に答える