@Huperty,
We had tested and did not reproduce the issue you mentioned.
Please refer to our code sample.
If you are still facing this problem, please provide code and sample files.
public static void main(String[] args) {
try{
CellsApi cellsApi = new CellsApi(System.getenv(“ProductClientId”),System.getenv(“ProductClientSecret”));
File file1 = new File(“D:\projects\aspose\examples\testdata\source\TestImportData.xlsx”);
cellsApi.uploadFile(“JavaTest/Book1.xlsx”, file1, null);
File file2 = new File(“D:\projects\aspose\examples\testdata\source\TestImportDataCSV.csv”);
cellsApi.uploadFile(“TestImportDataCSV.csv”, file2, null);
ImportCSVDataOption importData = new ImportCSVDataOption();
importData.setSourceFile(“TestImportDataCSV.csv”);
importData.setDestinationWorksheet(“Sheet2”);
importData.setFirstRow(1);
importData.setFirstColumn(1);
importData.setConvertNumericData(false);
importData.setSeparatorString(";");
importData.setImportDataType(“CSVData”);
CellsCloudResponse response = cellsApi.cellsWorkbookPostImportData(“Book1.xlsx”, importData, “JavaTest”, null);
System.out.println(response.getStatus());
}
catch( Exception e)
{
System.out.print(e.getMessage());
}
}
We use to Aspose.Cells Cloud SDK for Java 22.1.