chrome 密码不同步 ubuntu 删掉 ~/.config/google-chrome/Default/‘Login Data' mac mac 下该文件的路径是 /Library/Application Support/Google/Chrome/Profile 1/Login Data w ...
分类:
其他好文 时间:
2021-04-02 13:35:07
阅读次数:
0
一、文本与Base64 1、文本转Base64字符串 private static string StrToBase64(string str) { byte[] b = Encoding.Default.GetBytes(str); //转成 Base64 形式的 System.String st ...
首先先定义一个list,将其转存为csv文件,看将会报什么错误:list=[[1,2,3],[4,5,6],[7,9,9]]list.to_csv('e:/testcsv.csv',encoding='utf-8')运行后出现:Traceback (most recent call last): F ...
分类:
编程语言 时间:
2021-04-01 13:12:24
阅读次数:
0
package main import ( "encoding/json" "fmt" "io/ioutil" "os" ) type Student struct { ID int Age int Score int Name string } type Class struct { ID int ...
分类:
编程语言 时间:
2021-04-01 12:54:10
阅读次数:
0
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:
其他好文 时间:
2021-04-01 12:53:38
阅读次数:
0
起因是毕业设计需要大量的图书信息来填充数据库,所以想到利用爬虫来爬取学校图书馆内的藏书信息。 我使用的是python里面的requests库来实现爬虫的 简单的语法 response = requests.get("url") #生成一个response对象 response.encoding = ...
分类:
编程语言 时间:
2021-03-31 12:26:21
阅读次数:
0
一、 实现添加用户功能 1 创建项目 2 修改 POM 文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/ ...
分类:
编程语言 时间:
2021-03-30 13:45:52
阅读次数:
0
1.pom.xml文件(主要是添加依赖和插件) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XM ...
分类:
其他好文 时间:
2021-03-30 13:39:53
阅读次数:
0
Redis实现定时任务是基于对RedisKey值的监控 具体代码实现: 代码GitHub地址:https://github.com/Tom-shushu/Project 建一个SpringBoot项目 引入依赖 <?xml version="1.0" encoding="UTF-8"?> <proj ...
分类:
编程语言 时间:
2021-03-29 12:26:05
阅读次数:
0
ubuntu 20.04 lts,按照这个方案成功,其他方案不行 安装指令: sudo apt-get install language-pack-zh-hans sudo apt-get install fcitx-googlepinyin 配置: 1、搜索框输入:Language Support ...
分类:
系统相关 时间:
2021-03-29 12:16:50
阅读次数:
0