mpxj

How to create .mpp file in java?

痞子三分冷 提交于 2019-12-13 13:28:27
问题 I am able to create . mpx file by using mpxj library in java. I need write ( create ) . mpp file in java can any one suggest me please . 回答1: I maintain MPXJ, and the short answer to your enquiry is that, at present, MPXJ does not write MPP files. The main reason for this is simply that despite the effort which has gone into understanding the MPP file structure, there is still a great deal of it which is not well understood, hence it is difficult to reliably generate. The other issue is that

converting values of java.util.list to string or other normal format in vb

前提是你 提交于 2019-12-13 06:43:53
问题 in my application, I am pulling in items from a microsoft project file using mpxj - one of the items I need is the predecessors. The way I am able to pull the predecessor is using a build in function of mpxj which returns a type of java.util.list - I can save this to variable as an object, but I need to find a way to bring the data to a format I can easily use so I can store it into a database. Listed below is the line of code I am using to pull the predecessors from the project file. Dim

Example of MPXJ library in C#

喜夏-厌秋 提交于 2019-12-10 20:04:18
问题 I'm having a heckuva time finding any C# code examples using the MPXJ library when connecting to a Microsoft Project file. Can someone please post a snippet demonstrating how to write the contents of a table in an .mpp file to screen? Bonus points for any links/references! Thanks! ~Dan 回答1: hopefully this will help. First you need to open your project file: ProjectReader reader = ProjectReaderUtility.getProjectReader(inputFile); ProjectFile projectFile = reader.read(inputFile); This assumes