1. 编码问题:
遇到了几个字符串转换问题,总结如下:
1
2
3
4
|
# str to bytes str .encode(s) # bytes to str bytes.decode(b) |
判断编码方式可用chardet模块的chardet.detect(content)来协助。
2. char *有地址取内容:
1
|
strcontent = string_at(addr, - 1 ) |
3. 从动态链接库中获取函数并调用ctypes
1
2
3
|
from ctypes import * dll = CDLL( "YourAPP.dll" ) dll.YourFunction() |
4. 从dll中调用c程序,返回char*的情况处理
本来在32位下用string_at就可以解决,但是换成64位后内存访问出错。所以改用restype,终于解决。
1
2
3
4
5
6
7
8
|
#32位可行,64位出错: result = dll.function() result = string_at(result, - 1 ) print (result) #后来改成用restype,32位/64位通用 dll.function.restype = c_char_p result = dll.function() print (result) |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/iteye_6192/article/details/82652781