ODS'yi Bulutta XLSX dosyasına aktarın

Excel ve Android için açık kaynaklı Cloud SDK ile OpenOffice e-tablosunu dışa aktarma

Android için Cloud SDK\'da ODS\'yi XLSX dosyasına aktar

  1. Şu adreste bir hesap oluşturun:Gösterge Paneli ücretsiz almak için API kota ve yetkilendirme ayrıntılarını
  2. CellsApi‘i İstemci Kimliği, İstemci Sırrı, Temel URL ve API sürümüyle başlatın
  3. Ortaya çıkan XLSX akışını almak için cellsWorkbookPutConvertWorkbook yöntemini çağırın

Excel REST API ile Başlayın

Excel Cloud SDK for .NET kaynak kodunu şuradan alın:GitHub SDK’yı kendiniz derlemek veyaSalıverme Alternatif indirme seçenekleri için.

Ayrıca Swagger tabanlıya da bir göz atınAPI Referans hakkında daha fazla bilgi edinmek içinExcel DİNLENME API.

ODS\'den XLSX\'e Dönüşüm için Android Kodu

// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-android/
    import java.io.File;
    import com.aspose.cloud.cells.api.*;
    public class Conversion {
        public static void main(String[] args) {
            String name =  "Book1.xlsx";
            String format = "xlsx";
            String password = null;
            String outPath = null;
            String destFile = "DestFile.xlsx";
            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);
            }
        }
    }

FAQ

  • How can I get started with Aspose. REST APIs?
    Quickstart not only guides through the initialization of Aspose. Cloud API, it also helps in installing the required libraries.
  • Where can I see the release notes for Aspose. Cloud API?
    Complete release notes can be reviewed at Aspose. Cloud Documentation.
  • Is it safe to convert to in the Cloud?
    Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
  • What file formats are supported by Aspose. Cloud API?
    Aspose. Cloud can convert to and more. Checkout the complete list of supported file formats.
  • I do not have time to set up. Is there a quick demo for to that I can try?
    Indeed! Checkout the to Conversion App.

Other Options

What is File Format?

What is File Format?