- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在从事一个需要以“kiosk”演示模式显示 PPT 文件的项目。在 PPTX 文件中,我可以像 zip 文件一样提取它并重写 presProps.xml,其中包含诸如“p:showPr useTimings=”0”p:present”之类的属性,并且我可以通过重写“p:present”来更改模式到“p:kiosk”。我刚刚发现我可以使用 apache-poi OPCPackage 来做到这一点。(例如How do I edit the presProps.xml file with ApachePoi)
但是,在 PPT 文件中,我无法像上面那样执行此操作。有什么办法可以改变PPT文件的演示模式吗?或者我可以使用 apache-poi 将 PPT 文件转换为 PPTX 文件,以便上面的解决方案可以工作吗?
谢谢。
最佳答案
*.ppt
文件是以二进制文件格式存储的 PowerPoint
文件。这就是org.apache.poi.hslf是为.入口点是 HSLFSlideShow .
所有 Office 二进制格式都有一个共同点,即它们都是描述文档的Record
数据记录流。对于 PowerPoint
,规范位于:[MS-PPT]: PowerPoint (.ppt) Binary File Format 。
对于您的要求,有 DocumentContainer有一个可选的SlideShowDocInfoAtom放。可以设置F - fKioskMode(1 位)
来设置 kiosk 模式。
DocumentContainer
可以通过 HSLFSlideShow.getDocumentRecord 获取使用apache poi
。但随后 apache poi
的支持结束了,因为 Record
SlideShowDocInfoAtom
到目前为止尚未实现。
但是使用扩展了 RecordAtom
的自己的类 SlideShowDocInfoAtom
我们可以实现这一点。
示例:
import java.io.FileOutputStream;
import java.io.FileInputStream;
import java.io.ByteArrayOutputStream;
import java.io.OutputStream;
import java.io.IOException;
import org.apache.poi.hslf.usermodel.*;
import org.apache.poi.hslf.record.Record;
import org.apache.poi.hslf.record.RecordAtom;
public class HSLFSlideShowToKioskMode {
// not really necessary, only for debug actions
private static void hexDumpRecord(Record record) throws Exception {
ByteArrayOutputStream out = new ByteArrayOutputStream();
record.writeOut(out);
out.flush();
byte[] data = out.toByteArray();
out.close();
String hexDump = new java.math.BigInteger(data).toString(16);
System.out.println(hexDump);
}
// method for get/set SlideShowDocInfoAtom
private static SlideShowDocInfoAtom getSlideShowDocInfoAtom(HSLFSlideShow slideshow) throws Exception {
SlideShowDocInfoAtom slideShowDocInfoAtomRecord = null;
Record record = slideshow.getDocumentRecord().findFirstOfType(1025);
System.out.println(record.toString() + " type:" + record.getRecordType());
hexDumpRecord(record);
if (record != null) { // we must not create new SlideShowDocInfoAtom
// get present data
ByteArrayOutputStream out = new ByteArrayOutputStream();
record.writeOut(out);
out.flush();
byte[] data = out.toByteArray();
out.close();
// create new SlideShowDocInfoAtom from data
slideShowDocInfoAtomRecord = new SlideShowDocInfoAtom(data);
// replace old record with new SlideShowDocInfoAtom
slideshow.getDocumentRecord().addChildBefore(
slideShowDocInfoAtomRecord,
record
);
slideshow.getDocumentRecord().removeChild(record);
} else { // we must create new SlideShowDocInfoAtom
slideShowDocInfoAtomRecord = new SlideShowDocInfoAtom();
// add this SlideShowDocInfoAtom before EndDocumentAtom
slideshow.getDocumentRecord().addChildBefore(
slideShowDocInfoAtomRecord,
slideshow.getDocumentRecord().findFirstOfType(1002) // 1002 = 0x3ea = RT_EndDocumentAtom
);
}
return slideShowDocInfoAtomRecord;
}
public static void main(String[] args) throws Exception {
HSLFSlideShow slideshow = new HSLFSlideShow(new FileInputStream("Presentation.ppt"));
SlideShowDocInfoAtom slideShowDocInfoAtomRecord = getSlideShowDocInfoAtom(slideshow);
slideShowDocInfoAtomRecord.setfKioskMode(true);
slideShowDocInfoAtomRecord.setRestartTime(300000);
hexDumpRecord(slideShowDocInfoAtomRecord);
FileOutputStream out = new FileOutputStream("PresentationKiosk.ppt");
slideshow.write(out);
out.close();
slideshow.close();
}
//class SlideShowDocInfoAtom
//having methods for manipulating the [SlideShowDocInfoAtom](https://msdn.microsoft.com/en-us/library/dd908143.aspx)
private static class SlideShowDocInfoAtom extends RecordAtom {
private byte[] data;
public SlideShowDocInfoAtom() {
this.data = new byte[] {
//header
(byte)0x01, (byte)0x00, //MUST be 0x0001 (little endian)
(byte)0x01, (byte)0x04, //MUST be 0x0401 = RT_SlideShowDocInfoAtom (little endian)
(byte)0x50, (byte)0x00, (byte)0x00, (byte)0x00, //MUST be 0x00000050 (little endian)
//R //G //B //isRGB
(byte)0x00, (byte)0xFF, (byte)0x00, (byte)0xFE, //penColor green
(byte)0xe0, (byte)0x93, (byte)0x04, (byte)0x00, //restartTime 300000 ms (0x493e0, little endian)
(byte)0x00, (byte)0x00, //startSlide, only if fUseSlideRange is set
(byte)0x00, (byte)0x00, //endSlide, only if fUseSlideRange is set
//namedShow (64 bytes), only filled if there are named shows and fDocUseNamedShow is set, else all 0x00
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //8
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //16
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //24
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //32
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //40
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //48
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //56
(byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, //64
//H G F E D C B A
//fLoopContinuously,fWillSkipNarration,fKioskMode,fBrowseMode,fDocUseNamedShow,fUseSlideRange,fWillSkipBuilds,fAutoAdvance
(byte)Integer.parseInt("00010000", 2), //only fBrowseMode is set
// I
//0,0,0,0,0,0,0,fHideScrollBar
(byte)Integer.parseInt("00000000", 2),
(byte)0x00, (byte)0x00 //unused
};
}
public SlideShowDocInfoAtom(byte[] data) {
this.data = data;
}
public void setfKioskMode(boolean on) {
byte HGFEDCBA = this.data[84];
HGFEDCBA &= (byte)Integer.parseInt("110011111", 2); //fKioskMode and fBrowseMode = 0
if (on) HGFEDCBA |= (byte)Integer.parseInt("10100000", 2); //fLoopContinuously = 1 and fKioskMode = 1
else HGFEDCBA |= (byte)Integer.parseInt("00010000", 2); //fBrowseMode = 1
this.data[84] = HGFEDCBA;
}
public void setRestartTime(long milliseconds) {
//must be greater than or equal 300000
if (milliseconds < 300000) return;
this.data[12] = (byte) (milliseconds & 0xFF);
this.data[13] = (byte) ((milliseconds >> 8) & 0xFF);
this.data[14] = (byte) ((milliseconds >> 16) & 0xFF);
this.data[15] = (byte) ((milliseconds >> 24) & 0xFF);
}
//TODO: other setters
@Override
public void writeOut(OutputStream out) throws IOException {
out.write(data);
}
@Override
public long getRecordType() { return 1025; }
}
}
关于java - 如何使用 apache-poi 或其他第三个库更改 ppt 演示模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53894044/
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
在这个abc.php文件中写入如下代码。 ? 1
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我喜欢用 dotvvm 建立一个视频演示网站。当什么都没有发生时,每次从列表中播放新视频时它都必须开始。使用 bootstrap/MediaObject 我找不到“视频准备播放”事件,因此我们可以开始
我正在开发一个拼贴应用程序,为此我使用DKImagePickerController一次选择多个图像。 pod 的 Github 链接是 https://github.com/zhangao0086/
我试图证明 move 构造函数在消除不必要的复制方面的有用性。但是,当我在 Release 中运行时,Visual Studio 优化器会忽略拷贝。当 move 构造函数不可用时不会调用复制构造函数,
我正在尝试用我自己的测试项目重新创建 HornetQ 示例。但是我遇到了类加载器问题。显然,我缺少文档中未指定的一些依赖项。 文档让我添加 hornetq-core-client.jar netty.
这如何在 Markdown 中完成? 我在 Rmarkdown 中使用投影仪演示文稿,我想要幻灯片左侧的图像和幻灯片右侧的文本。 基本上,这是做什么的:https://tex.stackexchang
有时您需要创建一个 非常 Qt4 中的简单单文件应用程序。然而这是有问题的,因为你总是在做 CPP/H 分离,然后 main() 在另一个文件中...... 任何想法如何在单个文件中执行此操作?尽快弄
有很多关于 SAPUI5 拆分应用程序的演示、教程和文档,但我找不到大量非拆分应用程序的演示。哪里可以买到吗? 为什么如此关注拆分应用程序?它们非常适合移动设备,但我认为桌面应用程序不需要它们。 主视
我的页面 div#posts 下的部分根据脚本结果进行更新。这是一个老式的 mysql 选择查询,回显所有结果标签。 例如foreach($输出为$view) echo “{$view['smthin
ReportLab 用户指南中说: The colortest.py script in reportlab/demos/colors demonstrates thedifferent ways i
ReportLab 用户指南中说: The colortest.py script in reportlab/demos/colors demonstrates thedifferent ways i
我从 git 下载了 PF 演示:https://github.com/primefaces/showcase 并运行 mvn package,但收到以下消息: martin@MyUbuntu:~/
我看过一些程序显示惊人的高度详细的 3d 场景和配乐,但让我震惊的是它们都小于 64kB!这些程序如何运作? 最佳答案 他们按程序生成内容。即他们不添加 3d 模型、位图、基于样本的音频文件,...而
我想让这个休息服务工作: http://www.vogella.de/articles/REST/article.html 在3.4章节,我想运行服务,但是好像不可用。我从教程中复制粘贴了代码。 To
有人可以向我指出 JFreeChart 的 XYSplineRenderer 的工作示例吗? 最佳答案 虽然我从未见过该示例,但XYSplineRendererDemo1.java 是一个可以在dem
我已经下载并解压了 Havok demos ,但该项目依赖于一个文件夹: $(HAVOK_SDKS_DIR)/win32/dx/Include 但它没有设置 HAVOK_SDKS_DIR(没有安装程序
我已经检查了 10 种方法,为什么使用谷歌地图的简单应用程序不能工作,但我没有任何正确的解决方案。我还尝试运行位于 ...\android-sdks\extras\google\google_play
我已经从 oracle 下载中下载了 Swingset2 和 SwingSet3 演示文件(来自“使用 Swing 创建 GUI”教程)(并将它们解压缩/解压到用于 NetBeans 编译器的工作区)
我是一名优秀的程序员,十分优秀!