Convert XLTX to XLS

Java library for converting XLTX to XLS

Use the Conversion API of of Cells Cloud to create customized spreadsheet workflows in Java projects. This is a professional solution to convert XLTX to XLS and other document formats online using Java.

Convert XLTX to XLS using Cells Cloud SDK for Java

API
PUT
https://api.aspose.cloud/v3.0/cells/convert

Converting file formats from XLTX to XLS can be a complex task. Our Java SDK handles all XLTX to XLS format conversions while preserving the main structural and logical content of the source XLTX spreadsheet. Our Java library provides a professional solution for converting XLTX to XLS files online. This Cloud SDK empowers Java developers with powerful functionality and ensures high-quality XLS output.

Java Code Example for converting XLTX to XLS 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.xltx";
            String format = "xls";
            String password = null;
            String outPath = null;
            String destFile = "DestFile.xls";
            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 use Cells Cloud SDK for Java to convert Excel files to other formats XLTX to XLS


  1. Register an account at Dashboard to get free API quota & authorization details
  2. Initialize the Cells API with your Client ID, Client Secret, Base URL, and API version.
  3. Use the `putConvertWorkbook` method to retrieve the resulting stream.


System Requirements


  1. Maven 2.2.0 or newer
  2. Java(TM) SE Runtime Environment