Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Jython is a Java implementation of Python that combines expressive power with clarity. Jython is freely available for both commercial and non-commercial use and is distributed with source code. Jython is complementary to Java and is especially suited for the following tasks:
Aspose.Cells for Java is an advanced class library for Java that enables you to perform a great range of document processing tasks directly within your Java applications.
Aspose.Cells for Java supports processing Cells (DOC, DOCX, OOXML, RTF) HTML, OpenDocument, PDF, EPUB, XPS, SWF and all image formats. With Aspose.Cells you can generate, modify, and convert documents without using Microsoft Cells.
Aspose.Cells Java for Jython is a project that demonstrates / provides the Aspose.Cells for Java API usage examples in Jython.
Following are the system requirements to use Aspose.Cells Java for Jython:
Following are the supported platforms:
Download Examples from social coding websites
Following releases of running examples are available to download on all of the below mentioned social coding sites:
Download Aspose.Cells for Java component
You can create HelloWorld document using following example code:
from aspose-cells import Settings
from com.aspose.Cells import Document
from com.aspose.Cells import DocumentBuilder
class HelloWorld:
def __init__(self):
dataDir = Settings.dataDir + 'quickstart/'
workbook = Workbook()
sheet = workbook.getWorksheets().get(0)
cell = sheet.getCells().get("A1")
cell.setValue("Hello World!")
file_format_type = FileFormatType
workbook.save(dataDir + "HelloWorld.xls" , file_format_type.EXCEL_97_TO_2003 )
print "Document has been saved, please check the output file.";
if __name__ == '__main__':
HelloWorld()From the very first days of Aspose, we knew that just giving our customers good products would not be enough. We also needed to deliver good service. We are developers ourselves and understand how frustrating it is when a technical issue or a quirk in the software stops you from doing what you need to do. We’re here to solve problems, not create them.
This is why we offer free support. Anyone who uses our product, whether they have bought them or are using an evaluation, deserves our full attention and respect.
You can log any issues or suggestions related to Aspose.Cells Java for Jython using any of the following platforms:
Aspose.Cells Java for Jython is open source and its source code is available on the major social coding websites listed below. Developers are encouraged to download the source code and contribute by suggesting or adding new feature or improving the existing ones, so that others could also benefit from it.
You can get the latest source code from one of the following locations
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.