1、aTextControlTheInput是A文本框的KeyListener时间,aTextField是A文本框,bTextField是B文本框 public class aTextControlTheInput extends KeyAdapter { public void keyTyped( ...
分类:
其他好文 时间:
2021-04-05 12:38:26
阅读次数:
0
1. x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y ...
分类:
其他好文 时间:
2021-04-05 12:37:53
阅读次数:
0
如果我们往一个非空的目录下 clone git 项目,就会提示错误信息: fatal: destination path '.' already exists and is not an empty directory. 解决的办法是: 1. 进入非空目录,假设是 /workdir/proj1 2. ...
分类:
其他好文 时间:
2021-04-05 12:21:02
阅读次数:
0
https://www.yiibai.com/postgresql/ PostgreSQL教程 https://www.yiibai.com/postgresql/postgresql_c_cpp.html C/C++连接PostgreSQL数据库 https://www.jianshu.com/p ...
分类:
数据库 时间:
2021-04-02 13:25:24
阅读次数:
0
一、下载安装包(本文使用1.4版本) 下载地址:https://github.com/alibaba/nacos/releases/tag/1.4.1 二、数据库创建 创建脚本:解压后 nacos \ conf \ nacos-mysql.sql 新建数据库,执行该脚本即可,创建后数据库如下: 三、 ...
分类:
其他好文 时间:
2021-04-01 13:08:13
阅读次数:
0
""" 官网:https://docs.python-requests.org/zh_CN/latest/ Requests 唯一的一个非转基因的 Python HTTP 库,人类可以安全享用。 警告:非专业使用其他 HTTP 库会导致危险的副作用,包括:安全缺陷症、冗余代码症、重新发明轮子症、啃文 ...
分类:
其他好文 时间:
2021-04-01 12:56:36
阅读次数:
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
Django项目中,在pycharm使用python console进行操作时导包报错如下: django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not con ...
分类:
编程语言 时间:
2021-03-31 12:24:16
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <!-- <meta name="viewport" content="width=device-width,initial-scale=.33333,minim ...
分类:
移动开发 时间:
2021-03-31 12:13:18
阅读次数:
0
记录工作需要:将Unicode码转为汉字 string a = @"\u80a1\u7968"; var list = a.Split(@"\u"); for (int i = 1; i < list.Length; i++) { var s = int.Parse(list[i], NumberS ...
分类:
其他好文 时间:
2021-03-30 13:40:44
阅读次数:
0