2024年11月21日

摘要: 有对应的需求,需要获取文件的详细信息内容。该页面信息大部分来源于文件的版本信息,使用FileInfo类并不能获取到。 VERSIONINFO 资源 - Win32 apps | Microsoft Learn 信息格式: 1 VERSIONINFO FILEVERSION 1,0,0,323 PRO 阅读全文

posted @ 2024-11-21 18:52 云起 阅读(8) 评论(0) 推荐(0) 编辑

摘要: 该方法适用于arcgispro 3.1及以上版本,我目前测试到3.3,是可以的。 使用的是pro产品的启动配置文件,利用其中的SplashScreen实现这一需求。 在bin目录下,新建(或编辑)ArcGISPro.Config.xml文件,更改SpalshScreen节点。Pro初始化过程中,会获 阅读全文

posted @ 2024-11-21 18:40 云起 阅读(7) 评论(0) 推荐(0) 编辑


2024年7月29日

摘要: 使用AES加密时,发现得到的结果不一致。 python示例 from Crypto.Cipher import AES from Crypto.Util.Padding import pad from Crypto.Random import get_random_bytes import base 阅读全文

posted @ 2024-07-29 14:30 云起 阅读(237) 评论(0) 推荐(0) 编辑


2024年7月17日

摘要: 构建了一个命令行程序,使用Registry类进行注册表读取,但key获取的值为空。 var keyPath = @"key"; var valueName = "value"; using (RegistryKey key = Registry.LocalMachine.OpenSubKey(key 阅读全文

posted @ 2024-07-17 18:22 云起 阅读(29) 评论(0) 推荐(0) 编辑


2024年6月11日

摘要: 在pg11之后,引入了indnkeyatts字段,根据官方文档解释其作用:The number of key columns in the index, not counting any included columns, which are merely stored and do not par 阅读全文

posted @ 2024-06-11 21:03 云起 阅读(8) 评论(0) 推荐(0) 编辑


2024年6月4日

摘要: 在使用fwprintf向控制台打印诸如版权符©,或者注册商标符®时,发现输出的是问号(?),这无疑是一个字符集的问题。接收的数据是wchar_t,这个没办法变了。wchar_t为宽字符类型或双字符类型在,windows下采用的是unicode16,推测还是解析字符时使用的编码方式不正确。 尝试使用c 阅读全文

posted @ 2024-06-04 18:05 云起 阅读(26) 评论(0) 推荐(0) 编辑


2024年6月3日

摘要: 当使用arcpy获取polygon几何的时候,不能像ao一样获取到内外环,只能获取到单个部件。而part返回的即是一个点组了。 所以只能通过None对象进行分割,确定部件内的内外环。一个part内,只有一个外环,可以有多个内环。所以格式即为 [ exteriorring point 0, ..., 阅读全文

posted @ 2024-06-03 20:56 云起 阅读(32) 评论(0) 推荐(0) 编辑


2024年4月18日

摘要: SceneView m_sceneView; public void LoadSceneLayerFromSLPK(SceneView sceneView, string slpkPath) { if (!File.Exists(slpkPath)) throw new Exception("文件不 阅读全文

posted @ 2024-04-18 14:43 云起 阅读(14) 评论(0) 推荐(0) 编辑

摘要: 约瑟夫问题 N个人围成一圈,第一个人从1开始报数,报M的将被杀掉,下一个人接着从1开始报。如此反复,最后剩下一个,求最后的胜利者。 求解过程 单次求解过程 单独一人 直接返回1 通用过程 当前编号 执行后编号 1 n-m+1 2 n-m+2 ... ... m-1 n-1(n-m+m-1) m 0( 阅读全文

posted @ 2024-04-18 14:29 云起 阅读(22) 评论(0) 推荐(0) 编辑

摘要: 最近在做一个需求,需要调用同级目录的第三方程序进行数据处理。快速的薅了一个实现 Process process = new Process(); process.StartInfo = new ProcessStartInfo() { }; process.StartInfo.FileName = 阅读全文

posted @ 2024-04-18 12:05 云起 阅读(15) 评论(0) 推荐(0) 编辑


Copyright © 2024 云起
Powered by .NET 9.0 on Kubernetes