Skip to content

Instantly share code, notes, and snippets.

@blog-aspose-cloud
Last active January 9, 2023 20:32
Word to Markdown

Convert Word to Markdown using Java


This Gist provides the details and code snippet to Convert Word to Markdown using Aspose.Words Cloud SDK for Java.
We are going to explore both approaches i.e. loading the input Word document from local drive and saving the output on local drive as well as the approach to load Word document from Cloud storage and subsequently, saving the output Markdown documentation in the Cloud storage. For complete information, please visit Convert Word to Markdown in Java.

word to markdown

Important Links

Product Page | Docs | Live Demo | Swagger UI | Code Samples | Source Code | New Releases | Blog | Free Support | Free Trial

How to convert Word to Markdown using Java Cloud SDK
// For more code snippets, please https://github.com/aspose-words-cloud/aspose-words-cloud-java
try
{
String clientId = "bb959721-5780-4be6-be35-ff5c3a6aa4a2";
String clientSecret = "4d84d5f6584160cbd91dba1fe145db14";
// if baseUrl is null, WordsApi uses default https://api.aspose.cloud
WordsApi wordsApi = new WordsApi(clientId, clientSecret, null);
String format = "md";
// now create a new object of GetDocumentWithFormatRequest
GetDocumentWithFormatRequest convertRequest = new GetDocumentWithFormatRequest("sample_EmbeddedOLE.docx",format,null, null, null,null,null,"Converted.md",null);
// now call the method to initiate the conversion operation
// the resultant file is stored in cloud storage
wordsApi.getDocumentWithFormat(convertRequest);
}catch(Exception ex)
{
System.out.println(ex);
}
// For more code snippets, please https://github.com/aspose-words-cloud/aspose-words-cloud-java
try
{
String clientId = "bb959721-5780-4be6-be35-ff5c3a6aa4a2";
String clientSecret = "4d84d5f6584160cbd91dba1fe145db14";
// if baseUrl is null, WordsApi uses default https://api.aspose.cloud
WordsApi wordsApi = new WordsApi(clientId, clientSecret, null);
// load word document from local system
File file1 = new File("sample_EmbeddedOLE.docx");
// read the content of input word document
byte[] documentStream = Files.readAllBytes(file1.toPath());
// resultant file format
String format = "md";
// create Document conversion request where we provide resultant file name
ConvertDocumentRequest convertRequest = new ConvertDocumentRequest(documentStream,format, null,null, null, null);
// perform word to markdown conversion and save output in byte Array
byte[] resultantFile = wordsApi.convertDocument(convertRequest);
// Save resultant markdown documentation to local drive
FileOutputStream fos = new FileOutputStream("/Users/nayyer/Documents/" + "resultant.md");
fos.write(resultantFile);
fos.close();
}catch(Exception ex)
{
System.out.println(ex);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment