zoukankan      html  css  js  c++  java
  • ArcGIS COM Exception 0x80040228

    问题:

     string shpDir = Path.GetDirectoryName(shpfile);
                string shpfilename = Path.GetFileName(shpfile);
                IWorkspaceFactory wsFactory = new ShapefileWorkspaceFactoryClass();
                IWorkspace ws = wsFactory.OpenFromFile(shpDir, 0);
                IFeatureWorkspace featureWorkspace = (IFeatureWorkspace)ws;
                IFeatureClass featureClass = featureWorkspace.OpenFeatureClass(shpfilename);

    出现异常:

     COM Exception 0x80040228

    解决方法:

    [STAThread]static void Main()
    {
    IAoInitialize aoInit = new AoInitializeClass();          
    aoInit.Initialize(esriLicenseProductCode.esriLicenseProductCodeEngine);
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new formMain());    
    aoInit.Shutdown();
    }
    pasting
  • 相关阅读:
    重写Override和重加载Overload
    Java 继承
    poj 3263 Tallest Cow
    矩阵求和
    全排列
    最大乘积
    三角形面积
    Sum
    搭积木
    调手表
  • 原文地址:https://www.cnblogs.com/94cool/p/4109710.html
Copyright © 2011-2022 走看看