This tutorial describes how to delete footnote in DOC with Java REST API. You will learn to automatically remove a footnote in Word with Java Low Code API using a Cloud SDK on multiple platforms. It will guide you to perform the operation online and fetch the updated Word file for saving on the disk.
Prerequisite
- Create an account and get API credentials
- Download Aspose.Words Cloud SDK for Java for deleting a footnote
- Setup Java project with the above SDK to remove desired footnotes
Steps to Remove Footnote in Word with Java API
- Create the Configuration object by setting the client ID and secret
- Instantiate the WordsApi object to delete footnotes
- Read the input Word file with footnotes into a byte array
- Create the DeleteFootnoteOnlineRequest() by setting the input document stream and target footnote index
- Invoke the DeleteFootnoteOnline() method to remove the requested footnote
- Fetch the output stream from the API response and save it as a Word doc on the disk
The steps above summarize how to delete a footnote in Word with Java REST Interface. Create the WordsApi object by passing the Configuration class object with a client ID and secret. Use the DeleteFootnoteOnlineRequest class to create the request object for the footnote and call the DeleteFootnoteOnline() method to remove the footnote using this request object.
Code to Remove Footnote with Java Low Code API
import com.aspose.words.cloud.sdk.ApiClient; | |
import com.aspose.words.cloud.sdk.ApiException; | |
import com.aspose.words.cloud.sdk.Configuration; | |
import com.aspose.words.cloud.sdk.model.requests.DeleteFootnoteOnlineRequest; | |
import com.aspose.words.cloud.sdk.api.WordsApi; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
public class WorkWithFootnotes { | |
public static void removeAFootnote() { | |
try { | |
// Initialize the API client | |
Configuration configuration = new Configuration(); | |
configuration.setClientId("id"); | |
configuration.setClientSecret("secret"); | |
WordsApi wordsApi = new WordsApi(configuration); | |
// Open the input document with footnotes | |
File inputDocument = new File("Footnote.docx"); | |
FileInputStream requestDocument = new FileInputStream(inputDocument); | |
// Delete the footnote (Index 0 in this case) | |
DeleteFootnoteOnlineRequest deleteRequest = new DeleteFootnoteOnlineRequest(requestDocument, 0); | |
wordsApi.deleteFootnoteOnline(deleteRequest); | |
// Save the output file | |
File outputFile = new File("output.docx"); | |
try (FileOutputStream outputStream = new FileOutputStream(outputFile)) { | |
outputStream.write(requestDocument.readAllBytes()); | |
} | |
System.out.println("Footnote deleted successfully."); | |
} catch (ApiException | IOException e) { | |
e.printStackTrace(); | |
} | |
} | |
public static void main(String[] args) { | |
removeAFootnote(); | |
} | |
} |
This sample code has demonstrated how to remove a footnote in Word with Java RESTful Service. You may define the encoding for loading the source Word file and provide a password also if the input file is password-protected. You can also set the Node path in the Word document while instantiating the request object.
You may also check out another similar feature on the following page: Convert Word DOC to Markdown with Java REST API.