Différentes façons d ouvrir des fichiers

Ouvrir un fichier via un chemin

Les développeurs peuvent ouvrir un fichier Microsoft Excel en utilisant le chemin d’accès du fichier sur l’ordinateur local en le spécifiant dans le constructeur de la classe Workbook. Il suffit de passer le chemin dans le constructeur en tant que chaîne. Aspose.Cells détectera automatiquement le type de format de fichier.

import aspose.cells
from aspose.cells import Workbook
# Opening a File via a Path
# The path to the documents directory.
dataDir = ""
# Opening through Path
# Creating a Workbook object and opening an Excel file using its file path
workbook = Workbook(dataDir + "Input.xlsx")
print("Workbook opened using path successfully!")

Ouvrir un fichier via un flux

Il est également simple d’ouvrir un fichier Excel en tant que flux. Pour ce faire, utilisez une version surchargée du constructeur qui prend l’objet BufferStream contenant le fichier.

import io
import aspose.cells
from aspose.cells import Workbook, CellsHelper, License, SaveFormat
with open('Input.xlsx', 'rb') as file:
input_stream = io.BytesIO(file.read())
workbook = Workbook(input_stream)
out_stream = io.BytesIO()
workbook.save(out_stream, SaveFormat.XLSX)
out_bytes = out_stream.getvalue()
print(out_bytes)
out_stream.close()
input_stream.close()
print("Workbook opened using stream successfully!")

Ouvrir un fichier avec uniquement des données

Pour ouvrir un fichier avec seulement des données, utilisez les classes LoadOptions et LoadFilter pour définir l’attribut et les options liés des classes pour le fichier de modèle à charger.

import aspose.cells
from aspose.cells import Workbook, LoadOptions, LoadFormat, LoadFilter, LoadDataFilterOptions
# Opening a File with Data only
# The path to the documents directory.
dataDir = ""
# Load only specific sheets with data and formulas
# Other objects, items etc. would be discarded
# Instantiate LoadOptions specified by the LoadFormat
loadOptions = LoadOptions(LoadFormat.XLSX)
# Set LoadFilter property to load only data & cell formatting
loadOptions.load_filter = LoadFilter(LoadDataFilterOptions.CELL_DATA)
# Create a Workbook object and opening the file from its path
workbook = Workbook(dataDir + "Input.xlsx", loadOptions)
print("File data imported successfully!")