`

feature class上传sde数据库

阅读更多
功能:远程web上传shp文件,然后添加到指定的SDE已经存在的FeatureClass里

思路:读取shp里的Feature,编程连接到SDE,打开指定的FeatureClass,然后插入。

缺点:现在只能适用没有注册为版本的FeatureClass,在测试过程中,如果注册为版本,则运行报“Objects in this class cannot be updated outside an edit session ” 这个错误,一直不知道怎么解决,还请高手指点。

效果图:



主要实现代码:

文件上传功能实现:

C#代码
private void UpLoadFiles()  
    {  
        string filepath = Server.MapPath("./") + "UpLoadFiles";  
 
        HttpFileCollection uploadedFiles = Request.Files;  
        for (int i = 0; i < uploadedFiles.Count; i++)  
        {  
            HttpPostedFile userPostedFile = uploadedFiles[i];  
            try 
            {  
                if (userPostedFile.ContentLength > 0)  
                {  
                    userPostedFile.SaveAs(filepath + "\\" + System.IO.Path.GetFileName(userPostedFile.FileName));                      
                }  
                message.Text = this.ShpFile + "上传成功!";  
            }  
            catch 
            {  
                message.Text = this.ShpFile + "上传失败!";  
            }  
        }  
    } 

private void UpLoadFiles()
    {
        string filepath = Server.MapPath("./") + "UpLoadFiles";

        HttpFileCollection uploadedFiles = Request.Files;
        for (int i = 0; i < uploadedFiles.Count; i++)
        {
            HttpPostedFile userPostedFile = uploadedFiles[i];
            try
            {
                if (userPostedFile.ContentLength > 0)
                {
                    userPostedFile.SaveAs(filepath + "\\" + System.IO.Path.GetFileName(userPostedFile.FileName));                   
                }
                message.Text = this.ShpFile + "上传成功!";
            }
            catch
            {
                message.Text = this.ShpFile + "上传失败!";
            }
        }
    }

读取shp里的Feature功能实现:

C#代码
public IFeatureClass GetShpFeatureClass()  
    {  
        IFeatureClass returnFeatureClass = null;  
        //取得服务中的基本信息       
        IServerContext soc = GetSoc();  
 
        string filepath = Server.MapPath("./") + "UpLoadFiles";  
 
        IWorkspaceFactory pWorkspaceFactory = (IWorkspaceFactory)soc.CreateObject("esriDataSourcesFile.ShapefileWorkspaceFactory");  
        IFeatureWorkspace pFeatWS = pWorkspaceFactory.OpenFromFile(@filepath, 0) as IFeatureWorkspace;  
        //IFeatureLayer pLayer = (IFeatureLayer)pSOC.CreateObject("esriCarto.FeatureLayer");  
        returnFeatureClass = pFeatWS.OpenFeatureClass("china-hlj.shp");  
        //pLayer.Name = "rivers";  
        soc.ReleaseContext();  
        return returnFeatureClass;  
    } 

public IFeatureClass GetShpFeatureClass()
    {
        IFeatureClass returnFeatureClass = null;
        //取得服务中的基本信息    
        IServerContext soc = GetSoc();

        string filepath = Server.MapPath("./") + "UpLoadFiles";

        IWorkspaceFactory pWorkspaceFactory = (IWorkspaceFactory)soc.CreateObject("esriDataSourcesFile.ShapefileWorkspaceFactory");
        IFeatureWorkspace pFeatWS = pWorkspaceFactory.OpenFromFile(@filepath, 0) as IFeatureWorkspace;
        //IFeatureLayer pLayer = (IFeatureLayer)pSOC.CreateObject("esriCarto.FeatureLayer");
        returnFeatureClass = pFeatWS.OpenFeatureClass("china-hlj.shp");
        //pLayer.Name = "rivers";
        soc.ReleaseContext();
        return returnFeatureClass;
    }添加Feature到SDE的功能实现:

C#代码
public void Add_Fea(string FeaName, IFeature insertFeature)  
    {  
        IServerContext soc = GetSoc();  
 
        IPropertySet propSet = new PropertySetClass();  
        propSet.SetProperty("SERVER", this.SdeServer);  
        propSet.SetProperty("INSTANCE", this.SdeInstance);  
        propSet.SetProperty("USER", this.SdeUser);  
        propSet.SetProperty("PASSWORD", this.SdePassword);  
        propSet.SetProperty("VERSION", this.SdeVerson);  
 
 
        IWorkspaceFactory pWorkSpFac = (IWorkspaceFactory)soc.CreateObject("esriDataSourcesGDB.SDEWorkspaceFactory");  
        IFeatureWorkspace pFeaWorkSp = null;  
        pFeaWorkSp = (IFeatureWorkspace)(pWorkSpFac.Open(propSet, 0));//打开要素空间  
        IFeatureClass FeaCls = pFeaWorkSp.OpenFeatureClass(FeaName);//取得要素集  
        IFeatureCursor FeaCursor = FeaCls.Insert(true);  
        IFeatureBuffer FeaBuffer = FeaCls.CreateFeatureBuffer(); ;  
 
 
        IField Fld = new FieldClass();  
        IFields Flds = insertFeature.Fields;  
        for (int i = 0; i < Flds.FieldCount; i++)  
        {  
            Fld = Flds.get_Field(i);  
            int index = FeaBuffer.Fields.FindField(Fld.Name);  
            if (index != -1)  
            {  
                FeaBuffer.set_Value(index, insertFeature.get_Value(i));  
            }  
        }  
 
        FeaCursor.InsertFeature(FeaBuffer);  
        soc.ReleaseContext();  
        pFeaWorkSp = null;  
 
    } 
分享到:
评论

相关推荐

    Arcgis10.3创建SDE数据库、导入、导出手册

    在ArcMap中,通过右键新建Feature Class,可以选择不同类型的几何特征,如点、线、面等。添加必要的字段,并保存为新的空间表。 四、编辑图层 启用编辑工具栏,对图层进行编辑,包括添加、删除和修改特征。记得在...

    SDE数据库连接参照.pdf

    连接SDE数据库后,需要获取要编辑的FeatureClass。可以通过遍历所有的DataSet,找到符合要求的Dataset,然后遍历里面的要素,返回与参与别名一致的FeatureClass。 ```csharp public IFeatureClass FindClassByName...

    ArcEngine+C#连接SDE空间数据库

    2. **创建连接文件**:在C#代码中,你可以使用ESRI.ArcGIS.DataSourcesGDB.SdeConnectionFile类来创建一个指向SDE数据库的连接文件。连接文件是XML格式,包含了数据库的位置、用户名、密码等信息。 ```csharp ESRI....

    ArcGis中SDE连接数据库

    5. **操作数据**:现在你可以通过`FeatureClass`和`Table`对象访问和操作数据了。例如,获取特定图层、进行查询、添加、修改或删除数据。 6. **事务管理**:ArcSDE支持多用户编辑,因此在进行数据更改时,需要使用`...

    vb连接sde数据库方法

    虽然在OMD图中,FeatureClass是Table的子类,但在实际操作中,我们通常通过`IFeatureWorkspace`接口来访问要素类和表,因为它们都是Geodatabase中的数据对象。虽然没有专门针对Table的管理接口,但`...

    更改FeatureClass范围

    下面将详细介绍如何更改FeatureClass范围,包括使用ArcGIS desktop重新导入要素类、修改SDE系统表和修改PersonalGDB系统表等方法。 一、重新导入要素类 要更改FeatureClass范围,首先需要重新导入要素类。在 ...

    远程上传shp文件后添加到SDE已有的FeatureClass里

    标题中的“远程上传shp文件后添加到SDE已有的FeatureClass里”涉及到GIS(地理信息系统)技术,其中SDE通常指的是ESRI的ArcSDE,一个用于存储和管理地理空间数据的数据库扩展。这个过程涵盖了几个关键步骤,包括文件...

    sde 帮助文档 dev_help

    3. FeatureClass和Table类:分别代表空间特征类和属性表,提供了读写数据的方法。 4. QueryFilter和SelectionSet类:用于执行查询和选择集操作,可以根据各种条件筛选数据。 5. GeometricNetwork类:支持网络分析,...

    AE-SDE.rar_C#AE连接sde_SDE_ae

    2. 创建连接字符串:连接SDE数据库需要一个包含数据库信息的连接字符串,包括服务器地址、数据库名称、实例、用户凭据等。例如: ``` string connectionString = "Server=myServerAddress;Database=myDatabase;...

    winform打开esri-sde

    当我们需要在Winform应用中与ArcGIS的SDE数据库进行交互时,我们需要实现一个连接和操作SDE数据库的功能。下面将详细介绍如何在Winform应用中实现这个功能。 1. **理解Esri SDE**: Esri的SDE是用于存储、管理和...

    数据库连接

    通过上述步骤,我们可以有效地连接到SDE数据库,并定位到特定的`FeatureClass`进行编辑。需要注意的是,实际操作中可能遇到权限问题、连接超时等问题,因此在代码实现时应考虑异常处理,确保程序的健壮性和安全性。...

    C#写的ArcSDE连接添加Feature的类

    在C#中,我们可以使用ESRI.ArcGIS.Client.Toolkit.DataSources.GeoDatabaseFeatureTable类来操作Featureclass。首先,需要定义Featureclass的元数据,包括工作空间、名称、几何类型和字段信息: ```csharp string ...

    Feature-layer要素图层发布流程

    此外,对于SDE数据库的管理与维护也是要素服务发布的重要组成部分,确保数据库的安全性和稳定性是保障要素服务长期稳定运行的关键。 通过本文的详细介绍,希望能够帮助读者更好地理解和掌握要素服务发布的整个流程...

    arcgis engine空间数据库连接源码

    FeatureClass featureClass = conn.OpenFeatureClass("Cities"); // 执行查询、编辑等操作 } catch (Exception ex) { // 错误处理 } finally { if (conn != null && conn.IsOpen) { conn.Close(); } } ```...

    AE+C#连接数据库的方法

    featureLayer.FeatureClass = featureClass; return featureLayer; } catch (Exception ex) { MessageBox.Show(ex.Message, "GetFCFromSDE", MessageBoxButtons.OK, MessageBoxIcon.Information); return ...

    ArcEngine加载不同数据源

    加载Shapefile数据,加载栅格数据,加载CAD数据, 加载PersonGeodatabase数据,加载SDE数据库数据. 做项目整理出来的,用的时候,直接拷入即可,方便、快捷。 1 IWorkspaceFactory pWorkspaceFactory; 2 ...

    AE_加载Shapefile、栅格、CAD、PersonGDB、SDE数据

    本文将详细介绍如何在AE中加载Shapefile、栅格图像、CAD文件、PersonGDB以及SDE数据库中的数据。 #### 二、Shapefile数据加载 Shapefile是一种广泛使用的矢量数据格式,通常用于存储地图特征,如点、线、多边形等...

    SDE研究系列文章(使用SQL操作GDB中的数据)

    1. **GEOMETRY_STORAGE**: 控制矢量数据(如feature class)的存储方式,推荐设置为`SDELOB`。 2. **RASTER_STORAGE**: 控制栅格数据(如raster dataset、raster catalog或raster attribute)的存储方式,推荐设置为...

    加载地图数据的几种方法

    加载SDE数据库时,需要使用`SdeWorkspaceFactoryClass`实例化`IWorkspaceFactory`,其余步骤与加载Access数据库类似。 总之,加载地图数据是GIS应用程序的基础,AE提供了灵活的方式处理各种类型的数据源。无论是...

    ArcGIS Engine二次开发

    3. **关键对象接口**:如Layer、FeatureLayer、FeatureWorkspace、FeatureClass和FeatureSelection等,它们位于ESRI.ArcGIS.Geodatabase命名空间。这些接口形成了数据组织和操作的层次结构,例如,FeatureLayer是...

Global site tag (gtag.js) - Google Analytics