删除属性表中的字段一定要注意循环的方式。如果是for循环,i< FeatureClass.Fields.FieldCount话,每删除一个字段FieldCount属性返回的字段数量将减少一个,也就是你根本不能完全删除想要删除的字段;如果你先把FeatureClass.Fields.FieldCount赋给一个变量count,for循环中使用i<count,最后导致索引越界;所以,建议使用逆向的方法删除字段。
- IFeatureClass pointFS = GPClass.gpUtilities.OpenFeatureClassFromString(tmpPath + @"\Point.shp");
- int fieldCount = pointFS.Fields.FieldCount;
- IField delField = null;
- //逆向删除,以免出错
- for (int i = fieldCount - 1; i >= 0; i--)
- {
- ????delField = pointFS.Fields.get_Field(i);
- ????if (delField.Name != "FID" &&
- ????????delField.Name != "Shape" &&
- ????????delField.Name != "Layer" &&
- ????????delField.Name != "Text"
- ????????)
- ????{
- ????????pointFS.DeleteField(delField);
- ????????Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss ") + "删除字段" + delField.Name);
- ????}
- }
需要注意的是,逆向删除时,起始值是Count – 1,因为字段索引是从0开始的,自然,限制条件i>=0.
时间: 2024-10-09 09:22:01