// 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.getSharedDataDir(OpeningCSVFiles.class) + "loading_saving/"; // Opening CSV Files // Creating and CSV LoadOptions object LoadOptions loadOptions4 = new LoadOptions(LoadFormat.CSV); // Creating an Workbook object with CSV file path and the loadOptions // object Workbook workbook6 = new Workbook(dataDir + "Book_CSV.csv", loadOptions4); // Print message System.out.println("CSV format workbook has been opened successfully.");