Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

MS Project (MPP) file

AykutJan 8 2017

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.

TaskStartFinish
Collect URsJanuary 1 207
Approve URsFebruary 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

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Feb 5 2017
Added on Jan 8 2017
0 comments
844 views