当前位置: 首页 > 图文教程 > 脚本技术 > Python > Python 调用DLL操作抄表机

Python
Python 文件操作实现代码
动态创建类实例代码
python 中文字符串的处理实现代码
Python 匹配任意字符(包括换行符)的正则表达式写法
Python 开发Activex组件方法
Python+Django在windows下的开发环境配置图解
python 文件和路径操作函数小结
python 快速排序代码
Python2.5/2.6实用教程 入门基础篇
Python3 入门教程 简单但比较不错
Python 元类使用说明

Python 调用DLL操作抄表机


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 168 ::
收藏到网摘: n/a

Python 调用DLL的实用代码。 # -*- coding: GBK -*-
from ctypes import *
dll = windll.LoadLibrary('JBA188.dll')
a = dll.test()
print '测试设备连接状态%s' % a
srcName = c_char_p("publish_pd.bin")
decName = c_char_p('d:\\publish_pd.bin')
b = dll.upfile(srcName,decName)
print '将文件上传至计算机%s' % b
pStr = c_char_p()
pStr.value = ''
c = dll.getdatetime(pStr);
print '读取抄表机时间%s' % c
print pSt