Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Sometime, your CSV file contains multiple Encodings (Unicode, ANSI, UTF8, UTF7 etc). Aspose.Cells allows you to load such CSV files and converting them into other formats, for example PDF or XLSX.
Java
//Set Multi Encoded Property to True
TxtLoadOptions options = new TxtLoadOptions();
options.setMultiEncoded(true);
//Load the CSV file into Workbook
Workbook workbook = new Workbook(dataDir + "MultiEncoded.csv", options);
//Save it in XLSX format
workbook.save(dataDir + "EncodedNewFile_Out.xlsx", SaveFormat.XLSX);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.