我的新浪微博:。
欢迎大家相互交流,共同提高技术。
又是晚上12点以后了,今晚等待人民网的最新新闻也是没有结果,还是称这个时间写一篇博客吧!我是程序员但是也关心国家大事,自己没有太大的要求,就喜欢有一个稳定和安心的生活和工作环境,仅此而已!
今天这篇博客还是基于ArcGIS10.0和Oracle10g的空间数据管理平台的设计与实现的继续,前面有一篇博客(十三)介绍空间数据导入的,今天介绍一篇空间数据导出。空间数据导出的作用主要是以另一种形式保存,方便部分数据的转移。下面开始介绍具体实现过程。
1.定义个SDE的工作空间并且在构造函数中初始化
1 private IFeatureWorkspace pWorkspaceSDE;//定义SDE工作空间 2 public FrmDataExport() 3 { 4 InitializeComponent(); 5 if (pWorkspaceSDE == null) 6 { 7 //获取工作空间的一个实例 8 pWorkspaceSDE = MapOperation.GetFeatrueWorkspace(); 9 } 10 }
2.在form的load函数中初始化表信息,这些表就是可以被导出空间数据表。
1 ///2 /// 列出所有的表信息 3 /// 4 /// 5 /// 6 private void FrmDataExport_Load(object sender, EventArgs e) 7 { 8 SqlHelper sh = new SqlHelper(); 9 string sql = string.Empty; 10 sql = "select table_name,table_mapname,type from jcsjk_layer l,jcsjk_element e where " 11 + "e.id=l.pid and e.category='地震矢量数据'"; 12 OracleDataReader odr = sh.ReturnDataReader(sql); 13 object[] obj = new object[4]; 14 while (odr.Read()) 15 { 16 obj[0] = false; 17 obj[1] = odr[0].ToString(); 18 obj[2] = odr[2].ToString(); 19 obj[3] = odr[1].ToString(); 20 dataGridViewX1.Rows.Add(obj); 21 } 22 comboBoxEx1.SelectedIndex = 0; 23 }
3.选择多处数据的格式并做相应的准备工作
1 ///2 /// 根据选择的导出数据格式打开相应的文件 3 /// 4 /// 5 /// 6 private void selectPathBtn_Click(object sender, EventArgs e) 7 { 8 //根据导出数据格式打开相应的文件 9 switch (comboBoxEx1.SelectedIndex) 10 { 11 case 0: 12 { 13 FolderBrowserDialog folder = new FolderBrowserDialog(); 14 if (folder.ShowDialog() == DialogResult.OK) 15 { 16 if (folder.SelectedPath != "") 17 { 18 selectPathTxt.Text = folder.SelectedPath; 19 } 20 } 21 } 22 break; 23 case 1: 24 { 25 OpenFileDialog ofd = new OpenFileDialog(); 26 ofd.Filter = "MDB文件(.mdb) | *.mdb"; 27 ofd.CheckFileExists = false; 28 29 if (ofd.ShowDialog() == DialogResult.OK) 30 { 31 32 if (ofd.FileName != "") 33 { 34 selectPathTxt.Text = ofd.FileName; 35 } 36 } 37 } 38 break; 39 default: 40 break; 41 } 42 }
4.执行具体的导出功能
1 ///2 /// 执行具体的导出功能 3 /// 4 /// 5 /// 6 private void exportBtn_Click(object sender, EventArgs e) 7 { 8 if (selectPathTxt.Text == "") 9 { 10 MessageBox.Show("请选择导出路劲"); 11 return; 12 } 13 IWorkspaceFactory pWF = null; 14 switch (comboBoxEx1.SelectedIndex) 15 { 16 case 0: 17 { 18 if (!File.Exists(selectPathTxt.Text)) 19 { 20 21 } 22 //创建一个输出shp文件的工作空间 23 pWF = new ShapefileWorkspaceFactoryClass(); 24 IFeatureWorkspace pFW = pWF.OpenFromFile(selectPathTxt.Text, 0) as IFeatureWorkspace; 25 IWorkspace pW = pFW as IWorkspace; 26 27 for (int i = 0; i < dataGridViewX1.Rows.Count; ++i) 28 { 29 if (bool.Parse(dataGridViewX1.Rows[i].Cells[0].Value.ToString())) 30 { 31 if (dataGridViewX1.Rows[i].Cells[2].Value.ToString() != "PA") 32 { 33 string str = dataGridViewX1.Rows[i].Cells[1].Value.ToString(); 34 MapOperation.ConvertFeatureClass(pWorkspaceSDE as IWorkspace, 35 pW, str, str, 4326); 36 } 37 else 38 { 39 MessageBox.Show("属性表不能够导出为Shape文件"); 40 } 41 } 42 } 43 MessageBox.Show("导出数据完成!"); 44 } 45 break; 46 case 1: 47 { 48 // Instantiate an Access workspace factory and create a new personal geodatabase. 49 pWF = new AccessWorkspaceFactoryClass(); 50 IWorkspaceName pWN = pWF.Create(Path.GetDirectoryName(selectPathTxt.Text), 51 Path.GetFileName(selectPathTxt.Text),null, 0); 52 53 // Cast the workspace name object to the IName interface and open the workspace. 54 IName pN = (IName)pWN; 55 IWorkspace pW = (IWorkspace)pN.Open(); 56 57 for (int i = 0; i < dataGridViewX1.Rows.Count; ++i) 58 { 59 if (bool.Parse(dataGridViewX1.Rows[i].Cells[0].Value.ToString())) 60 { 61 string str = dataGridViewX1.Rows[i].Cells[1].Value.ToString(); 62 if (dataGridViewX1.Rows[i].Cells[2].Value.ToString() != "PA") 63 { 64 MapOperation.ConvertFeatureClass(pWorkspaceSDE as IWorkspace, 65 pW, str, str, 4326); 66 } 67 else 68 { 69 ITable pSourceT = pWorkspaceSDE.OpenTable(str); 70 IFeatureWorkspace pFW = pW as IFeatureWorkspace; 71 ITable pTargetT = pFW.CreateTable(str, pSourceT.Fields, null, null, ""); 72 FusedIndexTable(ref pSourceT, ref pTargetT); 73 } 74 } 75 } 76 MessageBox.Show("导出数据完成!"); 77 } 78 break; 79 default: 80 break; 81 } 82 }
5.如果导出的是mdb的格式,而且是以追加的方式,那么下面的函数将实现这个功能。
1 ///2 /// 如果目的数据库中已经有表,则将新的记录追加进去 3 /// 4 /// 导出表 5 /// 导入表 6 private void FusedIndexTable(ref ITable FromTable, ref ITable ToTable) 7 { 8 if (FromTable == null || ToTable == null) 9 { 10 return; 11 } 12 IRow pFromRow; 13 ICursor pToCursor, pFromCursor; 14 IRowBuffer pToRowBuffer; 15 int pIndex; 16 17 pToRowBuffer = ToTable.CreateRowBuffer(); 18 pToCursor = ToTable.Insert(true); 19 pFromCursor = FromTable.Search(null, false); 20 pFromRow = pFromCursor.NextRow(); 21 while (pFromRow != null) 22 { 23 for (int i = 0; i < pFromRow.Fields.FieldCount; i++) 24 { 25 pIndex = pToRowBuffer.Fields.FindField(pFromRow.Fields.get_Field(i).Name.Trim()); 26 if (pFromRow.Fields.get_Field(i).Editable && pIndex > -1) 27 { 28 pToRowBuffer.set_Value(pIndex, pFromRow.get_Value(i)); 29 } 30 } 31 32 pToCursor.InsertRow(pToRowBuffer); 33 pFromRow = pFromCursor.NextRow(); 34 } 35 System.Runtime.InteropServices.Marshal.ReleaseComObject(pToCursor); 36 pFromRow = null; 37 pFromCursor = null; 38 pToRowBuffer = null; 39 }
6.其他功能:主要就是一些小功能,例如界面的布局设计,选择导出的文件名,导出以后即使清空文件名等。
总结:其实空间数据导出功能也是主要用到一个技术:就是空间数据格式的相互转换。这个技术也是空间数据导入使用的主要功能或技术。还有一点值得提的是:把所有的表以及表的一些描述信息以列表的形式展现出来方便用户选择,选择的策略是任意多个需要导出的表,但是同时只能选择一种格式。如果需要导出多种格式,就需要多执行几次导出功能,这点是可以改进的地方,也可以用多选项给出,然后根据用户选择一次性导出多种格式,这样也简单的提升了用户使用的效率。呵呵,优化无处不在。