public class DataExportChart
extends com.supermap.data.InternalHandleDisposable
public void exportS57(){ //获取名称为GB_Chart的数据源。 Datasource datasource = m_workspace.getDatasources().get("GB_Chart"); // 设置需要导出数据以及文件类型、路径。 ExportSettingChartS57 exportSettingChartS57 = new ExportSettingChartS57(); exportSettingChartS57.setSourceData(datasource.getRootGroup().getChildGroups().get(0)); exportSettingChartS57.setTargetFilePath("SampleData\\GB4X1111.000"); exportSettingChartS57.setTargetFileTypeChart(FileTypeChart.S57); // 构建 SuperMap格式数据导出对象(DataExportChart),并设置导出设置信息类对象。 DataExportChart dataExportChart = new DataExportChart(); ExportSettingCharts exportSettingCharts = dataExportChart.getExportSettingCharts(); exportSettingCharts.add(exportSettingChartS57); // 执行数据的导出,得到SuperMap 格式数据导出结果对象。 ExportResultChart exportResultChart = dataExportChart.run(); // 释放 DataExportChart 对象所占用的资源。 dataExportChart.dispose(); }
构造器和说明 |
---|
DataExportChart()
构造一个新的
DataExportChart 对象。 |
限定符和类型 | 方法和说明 |
---|---|
void |
addExportSteppedListener(ExportChartSteppedListener exportChartSteppedListener)
添加一个用于接收海图数据导出进度事件
ExportChartSteppedListener 的监听器。 |
void |
dispose()
释放该对象所占用的资源。
|
ExportSettingCharts |
getExportSettingCharts()
返回
ExportSettingCharts 对象,用于多个导出任务的设置。 |
static long |
getHandle(com.supermap.data.InternalHandle obj) |
void |
removeExportSteppedListener(ExportChartSteppedListener exportChartSteppedListener)
移除一个用于接收海图数据导出进度事件
ExportChartSteppedListener 的监听器。 |
ExportResultChart |
run()
执行导出数据集的操作,返回海图数据导出结果
ExportResultChart 。 |
void |
setExportSettingCharts(ExportSettingCharts exportSettings)
设置
ExportSettingCharts 对象,用于多个导出任务的设置。 |
static void |
setIsDisposable(com.supermap.data.InternalHandleDisposable obj,
boolean disposable) |
void |
setUpDate(Boolean m_isUpDate) |
public DataExportChart()
DataExportChart
对象。public ExportResultChart run()
ExportResultChart
。ExportSettingChart
集合。public ExportSettingCharts getExportSettingCharts()
ExportSettingCharts
对象,用于多个导出任务的设置。public void setExportSettingCharts(ExportSettingCharts exportSettings)
ExportSettingCharts
对象,用于多个导出任务的设置。exportSettings
- SuperMap 格式数据导出设置信息集合对象,用于多个导出任务的设置。
>默认值为一个 ExportSettingCharts
对象,该对象用来存储ExportSettingChart
对象,默认的 ExportSettingChart
对象个数为0。
public void dispose()
public void addExportSteppedListener(ExportChartSteppedListener exportChartSteppedListener)
ExportChartSteppedListener
的监听器。exportChartSteppedListener
- 一个用于接收接收海图数据导出进度事件的监听器。public void removeExportSteppedListener(ExportChartSteppedListener exportChartSteppedListener)
ExportChartSteppedListener
的监听器。exportChartSteppedListener
- 一个用于接收接收海图数据导出进度事件的监听器。public void setUpDate(Boolean m_isUpDate)
public static void setIsDisposable(com.supermap.data.InternalHandleDisposable obj, boolean disposable)
public static long getHandle(com.supermap.data.InternalHandle obj)
Copyright © 2021–2024 SuperMap. All rights reserved.