0

このクラスをソケット経由で送信しようとすると、返されるのはNullPointExceptionだけです。NullPoint例外が発生しないようにするにはどうすればよいですか?

public class Hick implements Serializable{
public JTextArea jta;
public Hick(){
jta = new JTextArea();
}
}
4

1 に答える 1

1

私はそれを次のコードでテストしましたそれはうまくいくようです...

潜在的な問題を除外するために、最初にオブジェクトをローカルでシリアル化できることを確認します。それでもソケット全体にロードできない場合は、シリアル化ではなく、ソケットコードに問題があります

public class TestSerialisation {

    public static void main(String[] args) {
        new TestSerialisation();
    }

    public TestSerialisation() {
        ObjectOutputStream oos = null;
        ObjectInputStream ois = null;
        Wrapper out = new Wrapper();
        System.out.println("Before = " + out.dump());
        try {
            try {
                oos = new ObjectOutputStream(new FileOutputStream(new File("Test.out")));
                oos.writeObject(out);
            } finally {
                try {
                    oos.close();
                } catch (Exception e) {
                }
            }

            Wrapper in = null;
            try {
                ois = new ObjectInputStream(new FileInputStream(new File("Test.out")));
                in = (Wrapper) ois.readObject();
            } finally {
                try {
                    ois.close();
                } catch (Exception e) {
                }
            }            
            System.out.println("After = " + (in == null ? "null" : in.dump()));            
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
        }
    }

    public static class Wrapper implements Serializable {

        private JTextArea textArea;

        public Wrapper() {
            textArea = new JTextArea("I'm some text");
        }

        public String dump() {
            return textArea.getText();
        }
    }
}

また、互換性のあるバージョンのJavaを実行していること、および(私のメモリが適切に機能する場合)両端に互換性のあるバージョンのシリアル化されたオブジェクトがあることを確認してください。

于 2012-11-11T08:12:24.817 に答える