由于工作需要必须将word文档内容粘贴到编辑器中使用 但发现word中的图片粘贴后变成了file:///xxxx.jpg这种内容,如果上传到服务器后其他人也访问不了,网上找了很多编辑器发现没有一个能直接解决这个问题 考虑到自己除了工作其他时间基本上不使用windows,因此打算使用nodejs来解决 ...
分类:
其他好文 时间:
2020-07-06 12:56:25
阅读次数:
52
1. 变分自编码器(Variational Auto-Encoder,VAE) https://blog.csdn.net/jackytintin/article/details/53641885 2. 高斯分布的KL散度 https://blog.csdn.net/HEGSNS/article/d ...
分类:
其他好文 时间:
2020-07-06 00:47:33
阅读次数:
67
decode()函数的作用是用作解码,encode()函数是用作编码。 decode函数以encoding指定的编码格式解码字符串,默认是字符串编码。 语法是: str.decode(encoding='utf-8') encode函数以encoding指定的编码格式编码字符串。 语法是: str. ...
分类:
编程语言 时间:
2020-07-05 00:52:12
阅读次数:
72
package t2; import java.security.InvalidKeyException;import java.security.NoSuchAlgorithmException;import java.util.Base64; import javax.crypto.BadPad ...
分类:
其他好文 时间:
2020-07-05 00:48:17
阅读次数:
55
2种方法: 1.open文件设置encoding file = open(filename, 'r', encoding='UTF-8') 2.用encode方法 str = str.encode() 参考:https://www.fujieace.com/python/str-bytes.html ...
分类:
编程语言 时间:
2020-07-05 00:27:39
阅读次数:
167
Spring MVC 提供了一种机制,可以构造和编码URI -- 使用UriComponentsBuilder和UriComponents。 功能相当于 urlencode()函数,对url进行编码, 但同时还支持变量替换。 UriComponents uriComponents = UriComp ...
分类:
Web程序 时间:
2020-07-02 18:38:24
阅读次数:
119
import shelve a = shelve.open('1') b = [1,2,3] a['b'] = b a.close()a['b'] Traceback (most recent call last):File "C:\Users\Administrator\AppData\Local ...
分类:
其他好文 时间:
2020-06-30 17:22:01
阅读次数:
66
http_build_query()函数使用方法 http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。 写法格式:http_build_query ( mixed $query_data [, string $numeric_ ...
分类:
Web程序 时间:
2020-06-30 14:40:58
阅读次数:
91
在测试系统中,有些系统用户登录信息采用了base64进行编码,测试脚本里面,就需要对用户账号和密码进行编码处理,下面介绍一下LoadRunner中base64的编码和解码方法; 1、新建base64.h文件 base64.h文件用于编写base64编码和解码的方法,具体内容如下: // Encodi ...
分类:
其他好文 时间:
2020-06-28 15:36:30
阅读次数:
61
$password = pack('H*',md5('123456')); $password= '{MD5}'.base64_encode($password); hashlib是涉及安全散列和消息摘要,提供多个不同的加密算法接口,如SHA1、SHA224、SHA256、SHA384、SHA512 ...
分类:
编程语言 时间:
2020-06-28 13:21:58
阅读次数:
136