使用本主题使用 Java 将段落转换为 Word 中的项目符号。它包含建立开发环境的详细信息、完成任务的已定义步骤列表以及使用 Java 为 Word 开发**段落到项目符号点转换器的示例代码。您将在将 Word 文档中的多个段落转换为项目符号时学习不同的方法。
使用 Java 在 Word 中将段落转换为项目符号的步骤
- 设置环境以使用 Aspose.Words for Java 将段落转换为要点
- 将包含几个段落的源 Word 文档访问到 Document 对象中
- 将完整文档转换为字符串,并使用 String.split() 方法将其拆分为字符串
- 创建输出 Word 文件,将其与 DocumentBuilder 对象链接,并设置项目符号文本字体
- 将文本项目符号类型设置为方形
- 迭代使用 split 创建的字符串数组,并将每个字符串显示到项目符号列表
- 调用removeNumbers()方法清除段落中现有的项目符号和编号
- 将包含所有句子的输出 Word 文档保存为项目符号
这些步骤展示了使用 Java* 为 Word 开发*段落到项目符号点转换器。首先,使用 String.split() 方法将源 Word 文档转换为句子列表,然后创建输出 Word 文件并将其与 DocumentBuilder 类对象链接。在最后一步中,添加项目符号列表并填充文档段落中的所有文本。
使用 Java 将文本转换为 Word 中的项目符号的代码
import com.aspose.words.Document; | |
import com.aspose.words.DocumentBuilder; | |
import com.aspose.words.License; | |
import com.aspose.words.ListTemplate; | |
import com.aspose.words.SaveFormat; | |
public class ParagraphToBulletPoints { | |
public static void main(String[] args) throws Exception {// Remove bullets | |
String path ="/Users/KnowledgeBase/TestData/"; | |
// Apply Aspose.Words for Java license to insert bullet points | |
new License().setLicense(path + "Conholdate.Total.Product.Family.lic"); | |
// Access the source Word file using the Document class | |
Document srcDocx = new Document("Out.docx"); | |
String text = srcDocx.toString(SaveFormat.TEXT); | |
String pattern = "(?<=[.!?])\\s+"; | |
String[] sentences = text.split(pattern); | |
Document output = new Document(); | |
DocumentBuilder builder = new DocumentBuilder(output); | |
builder.getFont().setBold(true); | |
builder.getFont().setName("Courier"); | |
builder.getFont().setSize(12); | |
builder.getListFormat().setList(output.getLists().add(ListTemplate.BULLET_ARROW_HEAD)); | |
for(String sentence : sentences) | |
builder.writeln(sentence.trim()); | |
builder.getListFormat().removeNumbers(); | |
output.save("bullet.docx"); | |
System.out.println("Done"); | |
} | |
} |
该代码涉及使用 Java 为 Word 开发段落到要点转换器”的过程。 Document.toString()方法用于将整个Word文件转换为字符串,然后使用String.split()方法将其转换为多个字符串。 DocumentBuilder类用于设置方形格式、字体的项目符号列表,并将所有句子写入项目符号列表。
本主题介绍将 Word 文件转换为项目符号列表的过程。要将项目符号点转换为段落,请参阅有关如何使用 Java 将项目符号点转换为 Word 文件中的段落的文章。