Ihre erste Aspose.Cells Anwendung Hallo Welt

Erstellen der Hello World-Anwendung

Um die Hello World-Anwendung mit der Aspose.Cells-API zu erstellen:

  1. Erstellen Sie eine Instanz der Klasse Workbook.
  2. Die Lizenz anwenden:
    1. Wenn Sie eine Lizenz erworben haben, verwenden Sie die Lizenz in Ihrer Anwendung, um auf die volle Funktionalität von Aspose.Cells zuzugreifen.
    2. Wenn Sie die Evaluierungsversion des Komponenten verwenden (wenn Sie Aspose.Cells ohne Lizenz verwenden), überspringen Sie diesen Schritt.
  3. Erstellen Sie eine neue Microsoft Excel-Datei oder öffnen Sie eine vorhandene Datei, in der Sie einige Texte hinzufügen/aktualisieren möchten.
  4. Greifen Sie auf eine Zelle eines Arbeitsblatts in der Microsoft Excel-Datei zu.
  5. Fügen Sie die Worte Hallo Welt! in eine zugängliche Zelle ein.
  6. Generieren Sie die modifizierte Microsoft Excel-Datei.

Die folgenden Beispiele demonstrieren die obigen Schritte.

Erstellen eines Arbeitsblatts

Das folgende Beispiel erstellt ein neues Arbeitsblatt von Grund auf, schreibt die Worte ‘Hallo Welt!’ in die Zelle A1 des ersten Arbeitsblatts und speichert die Datei.

Die generierte Tabelle

todo:image_alt_text

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(CreatingWorkbook.class);
// Creating a file input stream to reference the license file
FileInputStream fstream = new FileInputStream("Aspose.Cells.lic");
// Create a License object
License license = new License();
// Applying the Aspose.Cells license
license.setLicense(fstream);
// Instantiating a Workbook object that represents a Microsoft Excel
// file.
Workbook wb = new Workbook();
// Note when you create a new workbook, a default worksheet, "Sheet1", is by default added to the workbook. Accessing the
// first worksheet in the book ("Sheet1").
Worksheet sheet = wb.getWorksheets().get(0);
// Access cell "A1" in the sheet.
Cell cell = sheet.getCells().get("A1");
// Input the "Hello World!" text into the "A1" cell
cell.setValue("Hello World!");
// Save the Microsoft Excel file.
wb.save(dataDir + "MyBook.xls", FileFormatType.EXCEL_97_TO_2003);
wb.save(dataDir + "MyBook.xlsx");
wb.save(dataDir + "MyBook.ods");

Öffnen einer vorhandenen Datei

Das folgende Beispiel öffnet eine vorhandene Microsoft Excel-Vorlagendatei namens book1.xls, schreibt die Worte ‘Hallo Welt!’ in die Zelle A1 im ersten Arbeitsblatt und speichert das Arbeitsblatt als neue Datei.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(OpeningExistingFile.class);
// Creating a file input stream to reference the license file
FileInputStream fstream = new FileInputStream("Aspose.Cells.lic");
// Create a License object
License license = new License();
// Set the license of Aspose.Cells to avoid the evaluation limitations
license.setLicense(fstream);
// Instantiate a Workbook object that represents an Excel file
Workbook workbook = new Workbook(dataDir + "book1.xls");
// Get the reference of "A1" cell from the cells of a worksheet
Cell cell = workbook.getWorksheets().get(0).getCells().get("A1");
// Set the "Hello World!" value into the "A1" cell
cell.setValue("Hello World!");
// Write the Excel file
workbook.save(dataDir + "HelloWorld.xls", FileFormatType.EXCEL_97_TO_2003);
workbook.save(dataDir + "HelloWorld.xlsx");
workbook.save(dataDir + "HelloWorld.ods");