DocumentPartSavingArgs
遗产: java.lang.Object
public class DocumentPartSavingArgs
提供数据IDocumentPartSavingCallback.documentPartSaving(com.aspose.words.DocumentPartSavingArgs)打回来。
要了解更多信息,请访问Save a Document文档文章。
当 Aspose.Words 将文档保存为 HTML 或相关格式并且HtmlSaveOptions.getDocumentSplitCriteria() / HtmlSaveOptions.setDocumentSplitCriteria(int)指定时,文档被拆分成多个部分,默认情况下,每个文档部分都保存到一个单独的文件中。
班级DocumentPartSavingArgs允许您控制每个文档部分的保存方式。它允许重新定义文件名的生成方式,或者通过提供您自己的流对象来完全避免将文档部分保存到文件中。
要将文档部分保存到流而不是文件中,请使用P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream财产。
方法
方法 | 描述 |
---|---|
equals(Object arg0) | |
getClass() | |
getDocument() | 获取正在保存的文档对象。 |
getDocumentPartFileName() | 获取文档部分将保存到的文件名(不带路径)。 |
getDocumentPartStream() | |
getKeepDocumentPartStreamOpen() | 指定 Aspose.Words 是否应该在保存文档部分后保持流打开或关闭它。 |
hashCode() | |
notify() | |
notifyAll() | |
setDocumentPartFileName(String value) | 设置文档部分将保存到的文件名(无路径)。 |
setDocumentPartStream(OutputStream value) | |
setKeepDocumentPartStreamOpen(boolean value) | 指定 Aspose.Words 是否应该在保存文档部分后保持流打开或关闭它。 |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
equals(Object arg0)
public boolean equals(Object arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | java.lang.Object |
退货: 布尔值
getClass()
public final native Class<?> getClass()
退货: java.lang.Class
getDocument()
public Document getDocument()
获取正在保存的文档对象。
退货: Document - 正在保存的文档对象。
getDocumentPartFileName()
public String getDocumentPartFileName()
获取文档部分将保存到的文件名(不带路径)。
此属性允许您重新定义文档部分文件名在导出为 HTML 或 EPUB 期间的生成方式。
调用回调时,此属性包含由 Aspose.Words 生成的文件名。您可以更改此属性的值以将文档部分保存到不同的文件中。请注意,每个部分的文件名必须是唯一的。
getDocumentPartFileName() / setDocumentPartFileName(java.lang.String)必须只包含没有路径的文件名。 Aspose.Words 使用文档文件名确定保存路径。如果未指定输出文档文件名,例如在保存到流时,此文件名仅用于引用文档部分。保存为 EPUB 格式时也是如此。
P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream
退货: java.lang.String - 文档部分将保存到的文件名(不带路径)。
getDocumentPartStream()
public OutputStream getDocumentPartStream()
退货: java.io.OutputStream
getKeepDocumentPartStreamOpen()
public boolean getKeepDocumentPartStreamOpen()
指定 Aspose.Words 是否应该在保存文档部分后保持流打开或关闭它。
默认为 false 并且 Aspose.Words 将关闭您在P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream将文档部分写入其中后的属性。指定 true 以保持流打开。请注意,调用中提供的主要输出流**M:Aspose.Words.Document.Save(System.IO.Stream,Aspose.Words.SaveFormat)或者M:Aspose.Words.Document.Save(System.IO.Stream,Aspose.Words.Saving.SaveOptions)**永远不会被 Aspose.Words 关闭,即使getKeepDocumentPartStreamOpen() / setKeepDocumentPartStreamOpen(boolean)设置为 false 。
P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream
退货: boolean - 相应的布尔值。
hashCode()
public native int hashCode()
退货: 整数
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setDocumentPartFileName(String value)
public void setDocumentPartFileName(String value)
设置文档部分将保存到的文件名(无路径)。
此属性允许您重新定义文档部分文件名在导出为 HTML 或 EPUB 期间的生成方式。
调用回调时,此属性包含由 Aspose.Words 生成的文件名。您可以更改此属性的值以将文档部分保存到不同的文件中。请注意,每个部分的文件名必须是唯一的。
getDocumentPartFileName() / setDocumentPartFileName(java.lang.String)必须只包含没有路径的文件名。 Aspose.Words 使用文档文件名确定保存路径。如果未指定输出文档文件名,例如在保存到流时,此文件名仅用于引用文档部分。保存为 EPUB 格式时也是如此。
P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream
参数:
范围 | 类型 | 描述 |
---|---|---|
value | java.lang.String | 文档部分将保存到的文件名(不带路径)。 |
setDocumentPartStream(OutputStream value)
public void setDocumentPartStream(OutputStream value)
参数:
范围 | 类型 | 描述 |
---|---|---|
value | java.io.OutputStream |
setKeepDocumentPartStreamOpen(boolean value)
public void setKeepDocumentPartStreamOpen(boolean value)
指定 Aspose.Words 是否应该在保存文档部分后保持流打开或关闭它。
默认为 false 并且 Aspose.Words 将关闭您在P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream将文档部分写入其中后的属性。指定 true 以保持流打开。请注意,调用中提供的主要输出流**M:Aspose.Words.Document.Save(System.IO.Stream,Aspose.Words.SaveFormat)或者M:Aspose.Words.Document.Save(System.IO.Stream,Aspose.Words.Saving.SaveOptions)**永远不会被 Aspose.Words 关闭,即使getKeepDocumentPartStreamOpen() / setKeepDocumentPartStreamOpen(boolean)设置为 false 。
P:Aspose.Words.Saving.DocumentPartSavingArgs.DocumentPartStream
参数:
范围 | 类型 | 描述 |
---|---|---|
value | boolean | 对应的布尔值。 |
toString()
public String toString()
退货: java.lang.字符串
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long | |
arg1 | int |