Convert ODS to MD using Cells Cloud SDK for Java
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
Converting file formats from ODS to MD can be a complex task. Our Java SDK handles all ODS to MD format conversions while preserving the main structural and logical content of the source ODS spreadsheet. Our Java library provides a professional solution for converting ODS to MD files online. This Cloud SDK empowers Java developers with powerful functionality and ensures high-quality MD output.
Java Code Example for converting ODS to MD using Cells Cloud SDK
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/
import java.io.File;
import com.aspose.cloud.cells.api.*;
public class Conversion {
public static void main(String[] args) {
String name = "Book1.ods";
String format = "md";
String password = null;
String outPath = null;
String destFile = "DestFile.md";
try {
CellsApi cellsApi = new CellsApi(System.getenv("ProductClientId"), System.getenv("ProductClientSecret"));
File response = cellsApi.cellsWorkbookPutConvertWorkbook(new File(name), format, password, outPath, null,null);
if(response.canRead())
{
if(response.exists()){
response.renameTo(new File(destFile));
}
}
}
catch(Exception exception )
{
System.out.print(exception);
}
}
}
How to convert ODS to MD using the Cells Cloud Java library.
- Register an account at Dashboard to get free API quota & authorization details
- Install Java library and add the reference (import the library) to your project.
- Open the source file in Java.
- Use the `putConvertWorkbook` method to retrieve the resulting stream.
System Requirements
- Maven 2.2.0 or newer
- Java(TM) SE Runtime Environment