I have a requirement in my spotfire application. I do export the data to local file as CSV. Export is completed successfully. After that i need to open the file in Excel application. i tried the below code it is working good in Spotfire client but in Web browser it is throwing ActiveX object not supported error. Can some one help me Java or Python script to open local file?
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("C:\Temp\teste.xlsx");