Automatische Anpassung von Zeile und Spalte
Contents
[
Hide
]
So passen Sie Zeile und Spalte automatisch mit Aspose.Cells for Java an
Der einfachste Ansatz zum automatischen Anpassen der Breite und Höhe einer Zeile besteht darin, die Methode Worksheet.autoFitRow aufzurufen. Die Methode autoFitRow nimmt einen Zeilenindex (der zu ändernden Zeile) als Parameter.
Bitte beachten Sie: Wenn Sie Zeilen und Spalten in Excel-Tabellen mit Java automatisch anpassen möchten, besuchen Sie bitte Autofit Rows and Columns.
Java
Workbook workbook = new Workbook("workbook.xls");
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.getWorksheets().get(0);
worksheet.autoFitRow(1); //Auto-fitting the 2nd row of the worksheet
worksheet.autoFitColumn(0); //Auto-fitting the 1st column of the worksheet
//Saving the modified Excel file in default (that is Excel 2003) format
workbook.save("AutoFit_Aspose.xls");
Apache POI SS - HSSF XSSF - Automatische Anpassung von Zeile und Spalte
Apache POI SS - HSSF und XSSF bieten Sheet.autoSizeColumn zur automatischen Anpassung von Spalten
Java
InputStream inStream = new FileInputStream("workbook.xls");
Workbook workbook = WorkbookFactory.create(inStream);
Sheet sheet = workbook.createSheet("new sheet");
sheet.autoSizeColumn(0); //adjust width of the first column
sheet.autoSizeColumn(1); //adjust width of the second column
FileOutputStream fileOut;
fileOut = new FileOutputStream("AutoFit_Apache.xls");
workbook.write(fileOut);
fileOut.close();