You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aspose.Cells Cloud for Go enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
3
+
Aspose.Cells Cloud SDK for Java enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
4
4
5
-
# Go package for Aspose.Cells Cloud
6
-
7
-
Enhance your Go applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/go) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine
8
-
9
-
## Manipulate Excel and other spreadsheet files in the Cloud
5
+
## Quick Start Guide
10
6
11
-
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
12
-
- Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
13
-
- Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
14
-
- Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
15
-
- Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
16
-
- Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
17
-
- Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
18
-
- Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
19
-
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
20
-
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
7
+
To get started with Aspose.Cells Cloud for Java, follow these steps:
21
8
9
+
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application information.
10
+
2. Add the following dependency to your project's POM:
22
11
23
-
## Feature & Enhancements in Version v25.6.0
12
+
```
13
+
<repositories>
14
+
<repository>
15
+
<id>AsposeJavaAPI</id>
16
+
<name>Aspose Java API</name>
17
+
<url>https://repository.aspose.cloud/repo/</url>
18
+
</repository>
19
+
</repositories>
24
20
25
-
Full list of issues covering all changes in this release:
21
+
<dependencies>
22
+
<dependency>
23
+
<groupId>com.aspose</groupId>
24
+
<artifactId>aspose-cells-cloud</artifactId>
25
+
<version>25.6.0</version>
26
+
</dependency>
27
+
</dependencies>
28
+
```
26
29
27
-
|**Summary**|**Category**|
28
-
| :- |:-------------|
29
-
| Optimize the upload file API | Improvement |
30
-
| Support delete blank rows, columns, and worksheets. | New Feature |
31
-
| Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
32
-
| Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
33
-
| Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
|SpreadsheetML|Excel 2003 XML file.|√|√|
55
61
|[Numbers](https://docs.fileformat.com/spreadsheet/numbers/)|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|√||
@@ -69,51 +75,61 @@ Full list of issues covering all changes in this release:
69
75
|[FODS](https://docs.fileformat.com/spreadsheet/fods/)|This is an Open Document format stored as flat XML.|√|√|
70
76
|[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√|
71
77
|[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√|
## Manipulate Excel and other spreadsheet files in the Cloud
74
91
75
-
To get started with Aspose.Cells Cloud for Java, follow these steps:
92
+
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
93
+
- Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
94
+
- Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
95
+
- Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
96
+
- Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
97
+
- Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
98
+
- Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
99
+
- Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
100
+
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
101
+
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
76
102
77
-
1. Create an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) and obtain your application information.
78
-
2. Add the following dependency to your project's POM:
103
+
## Feature & Enhancements in Version v25.6.0
79
104
80
-
```
81
-
<repositories>
82
-
<repository>
83
-
<id>AsposeJavaAPI</id>
84
-
<name>Aspose Java API</name>
85
-
<url>https://repository.aspose.cloud/repo/</url>
86
-
</repository>
87
-
</repositories>
105
+
Full list of issues covering all changes in this release:
88
106
89
-
<dependencies>
90
-
<dependency>
91
-
<groupId>com.aspose</groupId>
92
-
<artifactId>aspose-cells-cloud</artifactId>
93
-
<version>25.6.0</version>
94
-
</dependency>
95
-
</dependencies>
96
-
```
107
+
|**Summary**|**Category**|
108
+
| :- |:-------------|
109
+
| Optimize the upload file API | Improvement |
110
+
| Support delete blank rows, columns, and worksheets. | New Feature |
111
+
| Optimize search context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
112
+
| Optimize search broken links for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
113
+
| Optimize replace context for remote spreadsheet features by splitting them into independent APIs, each dedicated to a specific operational area. | New Feature |
The Aspose.Cells Cloud SDK is available in multiple popular programming languages, enabling developers to integrate spreadsheet processing capabilities across various development environments.
0 commit comments