首页 > 编程 > Python > 正文

Python 调用DLL操作抄表机

2019-11-25 18:45:10
字体:
来源:转载
供稿:网友
# -*- 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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表