Extract Tables from Word Documents Using C#

Word documents frequently contain tabular data that needs to be extracted for data import, statistical analysis, or report generation. Manual copy-paste operations are inefficient, and Office COM components introduce version compatibility issues and deployment complexities. This article demonstrates how to extract Word table content using C# wi ...

Posted on Sun, 19 Jul 2026 16:22:08 +0000 by mazman13

Programmatically Applying Superscript and Subscript Text in Word Documents Using Java

Dependancy Setup Add the library to your Java project via Maven. Include the repository and dependency in your pom.xml: <repositories> <repository> <id>com.e-iceblue</id> <url>http://repo.e-iceblue.cn/repository/maven-public/</url> </repository> </repositories> <depende ...

Posted on Fri, 19 Jun 2026 18:27:17 +0000 by kanch33

Adding Hyperlinks to Word Documents in Java

Hyperlinks in Word documents enable navigation from text or images to external locations. This guide demonstrates how to insert both text and image hyperlinks using Java. Dependancy Setup Option 1: Download the libray package, extract it, and add the Spire.Doc.jar file from the lib folder to your project classpath. Option 2: Configure Maven to ...

Posted on Fri, 29 May 2026 18:33:29 +0000 by Aurasia

Encrypting Word Documents Using Spire.Cloud API

This article demonstrates how to secure Word documents by applying password portection using the Spire.Cloud.Word API. We will cover the steps from obtaining API credentials to encrypting a document and viewing the result. Setup Account and Application Registration: Register for an account on the Spire.Cloud website (https://cloud.e-iceblue. ...

Posted on Sun, 10 May 2026 20:36:42 +0000 by townclown