Develop applications to convert documents of popular file formats back and forth using document conversion cloud SDK for Java & REST API.
Start Free TrialThe GroupDocs.Conversion Cloud SDK for Java has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
ConversionApi
using available AppSid
and AppKey
.ConvertSettings
to change our conversion settings.ConvertSettings.setFilePath
method.ConvertSettings.setFormat
method.ConvertSettings.setOutputPath
method.ConversionApi.convertDocument
method to start conversion.Check out GroupDocs.Conversion Cloud SDK for Java at GitHub if you are looking for the source code to convert file in the Cloud.
You can try GroupDocs.Conversion Low-Code Java APIs without any limitations.
GroupDocs.Conversion Cloud is also available as Docker image which can be used to self-host the service. Or you may build your own services using GroupDocs.Conversion High-code APIs which currently drive our REST APIs.
GroupDocs.Conversion REST API has the capability to perform document conversions on a number of document formats. It converts accurately making sure that the details are preserved while converting the document. Word Processing Document can be quickly converted into spreadsheet using below mentioned few lines of code:
//Get your App SID and App Key at https://dashboard.groupdocs.cloud (free registration is required).
ConversionApi apiInstance = new ConversionApi("AppSID", "AppKey");
ConvertSettings settings = new ConvertSettings();
settings.setStorageName("Storage Name");
settings.setFilePath("documents/myDocument.docx");
settings.setFormat("xlsx");
// Load a Word Processing Document ( DOCX ) to convert into any supported format
DocxLoadOptions loadOptions = new DocxLoadOptions();
loadOptions.setPassword("password");
loadOptions.setHideWordTrackedChanges(true);
loadOptions.setDefaultFont("Arial");
settings.setLoadOptions(loadOptions);
// Conversion Settings to convert into a Spreadsheet document
XlsxConvertOptions convertOptions = new XlsxConvertOptions();
convertOptions.setFromPage(1);
convertOptions.setPagesCount(2);
convertOptions.setFromPage(1);
convertOptions.setPassword("password");
convertOptions.setUsePdf(true);
settings.setConvertOptions(convertOptions);
settings.setOutputPath("documents/converted-docs");
// Convert to Specified Format
List response = apiInstance.convertDocument(new ConvertDocumentRequest(settings));
With GroupDocs.Conversion Cloud API, you can start converting your files right away as there is no need to install anything. The API is clearly documented and comes with SDKs and live examples for all major languages. Our GroupDocs.Conversion SDKs along with working examples hosted at Github helps our users to get started in no time.
GrupDocs.Convers Cloud API güvenli ve doğrulama gerektirir. GroupDocs Cloud’da kayıt olmanız ve uygulama erişim anahtar ID (appSID) ve uygulama gizli erişim anahtarı almanız gerekir. Kimlik doğrulama talepleri imza ve AppSID sorgu parametreleri veya OAuth 2.0 yetki başlığı gerektirir.
GrupDocs’i denemenin en kolay yolu. Tarayıcınızda hemen dönüşüm Cloud API, GrupDocs Cloud API Explorer’ı kullanarak GroupDocs Cloud API’leri için bir koleksiyondur. Bu, sorunsuz bir şekilde etkileşime girmenize ve API’lerimizin ortaya çıkmasını sağlar.