我正在建立我的第一个anylogic模型。我在模拟运行时收集数据集中重要变量的值。如何在运行结束后将这些数据自动保存到excel/csv文件中?根据模拟建模大书,有保存数据到数据库的选项,但我使用的计算机没有MS Access和管理规则不允许我安装新软件。
6bc51xsx1#
帮助文档中有一整章是关于如何使用excel api将数据写入excel https://anylogic.help/api/com/anylogic/engine/connectivity/ExcelFile.html的您需要使用连接选项板中的excel对象然后您可以执行以下操作
excel.setCellValue(value, sheetIndex, rowIndex, columnIndex); excel.writeFile();
来编写数据集
excel.writeDataSet(DataSet dataSet, int sheetIndex, int rowIndex, int columnIndex)
1条答案
按热度按时间6bc51xsx1#
帮助文档中有一整章是关于如何使用excel api将数据写入excel https://anylogic.help/api/com/anylogic/engine/connectivity/ExcelFile.html的
您需要使用连接选项板中的excel对象
然后您可以执行以下操作
来编写数据集