我正在尝试使用MPXWrite更新mpx文件,
实际上我将mpp文件转换为mpx文件,以便现在我能够读取所有任务和任务细节。但我想更新%完成mpx文件中的特定任务我是如何做到的。
任何人都可以为此提供代码。
先谢谢..请帮我解决这个问题
//像这样我正在阅读mpx文件
private static void readMPX(String inputFile){
File f = new File(inputFile);
MPXReader read1 = new MPXReader();
ProjectFile pFile = null;
try{
pFile = read1.read(f);
}catch(Exception e){
e.printStackTrace();
}
List llist=pFile.getAllTasks();
for(int i=1;i<10/*llist.size()*/;i++)
{
Task t=(Task)llist.get(i);
System.out.println("------------------------------------");
System.out.println("Task Details : "+i +llist.get(i));
System.out.println("WBS : "+t.getWBS());
System.out.println("WBS Leve : "+t.getWBSLevel());
System.out.println("Task name : "+t.getName());
System.out.println("Duration : "+t.getDuration());
//System.out.println("Task Unique ID : "+t.getUniqueID());
// System.out.println("Task Unique ID : "+t.getUniqueID());
System.out.println("Base Line Start : "+t.getBaselineStart());
System.out.println("Base Line Finish : "+t.getBaselineFinish());
System.out.println("Actual Start Date : "+t.getActualStart());
// System.out.println("\tFinish Date : "+t.getFinish());
System.out.println("Actual End Date : "+t.getActualFinish());
System.out.println("% Complete : "+t.getPercentageComplete());
//getSubTasks(t,t.getUniqueID());
System.out.println("------------------------------------");
}
}
答案 0 :(得分:0)
以下是一些示例代码:
private static void readMPX(String inputFile, String outputFile)
{
File f = new File(inputFile);
MPXReader read1 = new MPXReader();
ProjectFile pFile = read1.read(f);
// Select the task you want to update
// Here we are just selecting the first task
Task task = pFile.getTaskByID(1);
// Let's set it to 60% complete
task.setPercentageComplete(60);
// Now we write the result to a new file
new MPXWriter().write(pFile, outputFile);
}
答案 1 :(得分:0)
受微软限制。我们不能写回mpp文件。