Hi,
I am using mpxj to read MS Project Files (mpp)
Example 1:
I have a Task a with given start date, but empty finish date.
If I use mpxj, I do get for Finish Date the same value as Start date.
Example 2:
I have a Task a with empty start date, and given finish date.
If I use mpxj, I do get for Start Date the same value as Finish date.
Task | Start | Finish |
---|
Collect URs | January 1 207 | |
Approve URs | | February 20 207 |
I am simply using following code snippet:
System.out.println(i + "\t" + task.getName() + "\t" + " [ start ] "+task.getStart() + "\t" + "[ finish ] "+task.getFinish());
Does anyone knows the issue and how to workaround it?
Any idea for another free mpp api other than mpxj ?
Thanks, Aykut