Announcement

Collapse
No announcement yet.

Wie sind ObjectStreams aufgebaut?

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Wie sind ObjectStreams aufgebaut?

    Ich bekomme aus einer Delphi-Anwendung einen Stream, in dem komplexe Objectstrukturen enthalten sind. Diese möchte ich in einen gültigen Java-ObjectInputStream umwandeln (um innerhalb des Java-Frontends diese Objecte zu erzeugen). Leider finde ich keine Literatur über den Aufbau dieser Java-ObjectStreams.

    Würde mich über jede Hilfe freuen...

  • #2
    "Serialization" of an object means to convert its state into a byte stream in such a way that the information contained in the byte stream can be restored into a copy or "clone" of that object, for example in a remote process.

    Stichwort: JAVA Serialization:
    http://java.sun.com/products/jdk/1.2/docs/guide/serialization/spec/serialTOC.doc.html
    http://developer.java.sun.com/developer/technicalArticles/Programming/serialization/

    das sollte erstmal reichen...
    ansonsten einfach mal java serialization bei google eingeben.

    th

    Comment

    Working...
    X