它在http标头中指定
content-disposition。因此,要提取名称,您将执行以下 *** 作:
import red = r.headers['content-disposition']fname = re.findall("filename=(.+)", d)[0]
通过正则表达式(
re模块)从字符串中提取的名称。
欢迎分享,转载请注明来源:内存溢出
它在http标头中指定
content-disposition。因此,要提取名称,您将执行以下 *** 作:
import red = r.headers['content-disposition']fname = re.findall("filename=(.+)", d)[0]
通过正则表达式(
re模块)从字符串中提取的名称。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)