使用 MPXJ 在 Python 中将 MPP 文件转换为 MS XML 格式

Converting MPP files to MS XML format in Python using MPXJ

我正在尝试使用 MPXJ 库和 Jpype

将 MPP 文件转换为 MS XML 格式
def convert(inputFile, outputFile):
   reader = ProjectReaderUtility.getProjectReader(inputFile)
   project = ProjectFile()
   project = reader.read(inputFile)
   writer = ProjectWriter
   writer = ProjectWriterUtility.getProjectWriter(outputFile)
   writer.write(project, outputFile)

如果我尝试转换为 json 格式,则效果很好。但是,始终存在与 xml 文件相关的错误。我收到与 java xml library

相关的错误
java.io.IOException: java.io.IOException: javax.xml.bind.JAXBException: 
Implementation of JAXB-API has not been found on module path or classpath.
 with linked exception:
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory]

任何人都可以帮助解决这个问题。 我正在使用 Python 3.8 和 jdk-15.0.2

好吧,这是受 Jon Illes 回应启发的错误依赖。我使用的是 jaxb-api 这不是正确的依赖项。检查依赖列表后,我了解到所需的正确包是 jaxb-runtime。下载后脚本运行。

感谢 Jon 的及时回复和指导解决方案