笔记
「已注销」
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
文本读写
文本读读写 文本 def read_text_file(filepath): file_object = open(filepath, encoding=‘utf-8’, mode=‘r’) try: text_data = file_object.read(2048) # data = file_object.readlines() finally: file_object.close() re...原创 2019-12-20 10:39:06 · 162 阅读 · 0 评论 -
Python调用zxing
import os import jpype from jpype import * class ZXQRcode(object): def __del__(self): # 关闭JVM shutdownJVM() # 生成二维码 def make_qr_code(self, file_data, file_path): jar_path = os.path.j...原创 2019-12-20 10:36:53 · 1382 阅读 · 0 评论
分享