python引用DLL文件的方法


Posted in Python onMay 11, 2015

本文实例讲述了python引用DLL文件的方法。分享给大家供大家参考。具体分析如下:

在python中调用dll文件中的接口比较简单,如我们有一个test.dll文件,内部定义如下:

extern "C" 
{ 
int __stdcall test( void* p, int len) 
{  
return len; 
} 
}

在python中我们可以用以下两种方式载入

1.

import ctypes
dll = ctypes.windll.LoadLibrary( 'test.dll' )

2.

import ctypes
dll = ctypes.WinDll( 'test.dll' )

其中ctypes.windll为ctypes.WinDll类的一个对象,已经在ctypes模块中定义好的。在test.dll中有test接口,可直接用dll调用即可

nRst = dll.test( )
print nRst

由于在test这个接口中需要传递两个参数,一个是void类型的指针,它指向一个缓冲区。一个是该缓冲区的长度。因此我们要获取到python中的字符串的指针和长度

#方法一:
sBuf = 'aaaaaaaaaabbbbbbbbbbbbbb'
pStr = ctypes.c_char_p( )
pStr.value = sBuf
pVoid = ctypes.cast( pStr, ctypes.c_void_p ).value
nRst = dll.test( pVoid, len( pStr.value) )
#方法二:
test = dll.test
test.argtypes = [ctypes.c_char_p, ctypes.c_int]
test.restypes = ctypes.c_int
nRst = test(sBuf, len(sBuf))

如果修改test.dll中接口的定义如下:

extern "C" 
{ 
  int __cdecl test( void* p, int len)
  { 
    return len; 
  } 
}

由于接口中定义的是cdecl格式的调用,所以在python中也需要用相应的类型

1.  

import ctypes
dll = ctypes.cdll.LoadLibrary( 'test.dll' )
##注:一般在linux下为test.o文件,同样可以使用如下的方法: 
##dll =ctypes.cdll.LoadLibrary('test.o')

2. 

import ctypes
dll = ctypes.CDll( 'test.dll' )

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python中os.path用法分析
Jan 15 Python
让Python脚本暂停执行的几种方法(小结)
Jul 11 Python
简单介绍python封装的基本知识
Aug 10 Python
pandas的to_datetime时间转换使用及学习心得
Aug 11 Python
django中的数据库迁移的实现
Mar 16 Python
jupyter notebook 多行输出实例
Apr 09 Python
简单了解Python变量作用域正确使用方法
Jun 12 Python
为什么是 Python -m
Jun 19 Python
10款最佳Python开发工具推荐,每一款都是神器
Oct 15 Python
CocosCreator ScrollView优化系列之分帧加载
Apr 14 Python
解决Python字典查找报Keyerror的问题
May 26 Python
python3 字符串str和bytes相互转换
Mar 23 Python
深入解析Python中的WSGI接口
May 11 #Python
详细解析Python中__init__()方法的高级应用
May 11 #Python
从Python的源码来解析Python下的freeblock
May 11 #Python
详解Python的Django框架中的templates设置
May 11 #Python
Python素数检测的方法
May 11 #Python
Python中IPYTHON入门实例
May 11 #Python
Python使用MONGODB入门实例
May 11 #Python
You might like
phpmyadmin MySQL 加密配置方法
2009/07/05 PHP
Symfony2实现在doctrine中内置数据的方法
2016/02/05 PHP
PHP匿名函数和use子句用法实例
2016/03/16 PHP
浅谈PHP eval()函数定义和用法
2016/06/21 PHP
php生成网页桌面快捷方式
2017/05/05 PHP
PHP设计模式之装饰器模式定义与用法详解
2018/04/02 PHP
php实现统计IP数及在线人数的示例代码
2020/07/22 PHP
javascript showModalDialog 多层模态窗口实现页面提交及刷新的代码
2009/11/28 Javascript
几个有趣的Javascript Hack
2010/07/24 Javascript
XMLHTTPRequest的属性和方法简介
2010/11/23 Javascript
深入理解JavaScript系列(10) JavaScript核心(晋级高手必读篇)
2012/01/15 Javascript
js弹出层(jQuery插件形式附带reLoad功能)
2013/04/12 Javascript
Jquery时间轴特效(三种不同类型)
2015/11/02 Javascript
jQuery中Ajax全局事件引用方式及各个事件(全局/局部)执行顺序
2016/06/02 Javascript
jQuery+CSS3实现四种应用广泛的导航条制作实例详解
2016/09/17 Javascript
基于Vuejs框架实现翻页组件
2020/06/29 Javascript
AngularJs中 ng-repeat指令中实现含有自定义指令的动态html的方法
2017/01/19 Javascript
jquery获取下拉框中的循环值
2017/02/08 Javascript
AngularJS日程表案例详解
2017/08/15 Javascript
微信小程序实现图片预览功能
2018/01/31 Javascript
bootstrap中selectpicker下拉框使用方法实例
2018/03/22 Javascript
前端axios下载excel文件(二进制)的处理方法
2018/07/31 Javascript
jquery使用FormData实现异步上传文件
2018/10/25 jQuery
Javascript的this详解
2019/03/23 Javascript
JS中间件设计模式的深入探讨与实例分析
2020/04/11 Javascript
基于Django用户认证系统详解
2018/02/21 Python
OpenCV图片漫画效果的实现示例
2020/08/18 Python
python如何利用paramiko执行服务器命令
2020/11/07 Python
python实现文件+参数发送request的实例代码
2021/01/05 Python
python包的导入方式总结
2021/03/02 Python
英文版区域经理求职信
2013/10/23 职场文书
大二学习计划书范文
2014/04/27 职场文书
秋季运动会广播稿(30篇)
2014/09/13 职场文书
汽车销售员岗位职责
2015/04/11 职场文书
限期整改通知书
2015/04/22 职场文书
采购部2015年度工作总结
2015/07/24 职场文书