rjohnsondev / java-libpst

A library to read PST files with java, without need for external libraries.
249 stars 122 forks source link

Merge two PSTAppointement #71

Open tartreau opened 6 years ago

tartreau commented 6 years ago

I am currently working on PST (here is the library and the doc: http://rjohnsondev.github.io/java-libpst/)

The objects I use are PSTAppointement. In an arrayList, I list my objects, some are almost identical :

  • same name
  • same matter
  • same location
  • /!\ different people /!\

I want to make objects with the above characteristics "merge" and form only one object, but with the names of all people of all similar objects

Example :

Objet 1 : Marseille, 8h, Inauguration of the franprix, Jean Marc / Michel

Objet 2 : Marseille, 8h, Inauguration of the Franprix, Wilfried / Josephe

Final object: Marseille, 8h, Inauguration of the Franprix, Wilfried / Josephe / Jean Marc / Michel

Now according to the doc, no constructor nor set (the PST base file are of microsoft outlook).

Is there any way to do that?