我已经开始使用Apache POI打开并保存演示文稿,这是我能想到的最基本的事情:
function add() {
var shoppingCart = [];
document.getElementById("itemOne").addEventListener("click", function() {
shoppingCart.push("One");
});
document.getElementById("itemTwo").addEventListener("click", function() {
shoppingCart.push("Two")
});
document.getElementById("total").addEvenetListener("click", function() {
document.getElementById("display").innerHTML =
shoppingCart;
})
}
XMLSlideShow output = new XMLSlideShow(new FileInputStream("test.pptx"));
FileOutputStream out = new FileOutputStream("test out.pptx");
output.write(out);
out.close();
output.close();
是一个空的演示文稿。打开test.pptx
时出现以下错误:
按下维修工作,但我不希望用户每次都这样做。我可以毫无问题地打开test out.pptx
。控制台中没有错误。
我在Windows 7上使用Apache POI 3.15和eclipse Luna。