// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java //Load the sample Excel file Workbook wb = new Workbook("sampleExportSimilarBorderStyle.xlsx"); //Specify Html Save Options - Export Similar Border Style HtmlSaveOptions opts = new HtmlSaveOptions(); opts.setExportSimilarBorderStyle(true); //Save the workbook in Html format with specified Html Save Options wb.save("outputExportSimilarBorderStyle.html", opts);