现象: 在使用Intellij开发Java应用时,出现如下情况: 1.类搜索功能无法使用,输入类名显示找不到该类 2.代码编辑器部分出现Analyzing字样 3.写代码无可用方法提示,自动补全等功能 4.类文件显示icon不是如下类型 Intellij似乎没有把类文件当作Java类来处理,而是当作 ...
分类:
其他好文 时间:
2021-06-02 11:20:24
阅读次数:
0
#!/usr/bin/env python # encoding: utf-8 import datetime import os import shutil import subprocess import time import zipfile # 数据库用户名 db_user = "root" ...
分类:
数据库 时间:
2021-06-02 11:05:03
阅读次数:
0
日期显示代码如下: 1 // <summary> 2 /// 日期时间显示改变 3 /// </summary> 4 private void InitDateTimePickerUp() 5 { 6 //开始时间 7 this.dateTimePicker_start.CustomFormat = ...
事发缘由:因三级等保、需要将centos7系统中的”高危”用户进行封禁或者注释,用户有: dademon、adm、lp、shutdown、halt、mail、operator、gamesftp、nobody、system-network、polkitd、dbus、postfix,其中polktd、d ...
分类:
其他好文 时间:
2021-06-02 10:30:31
阅读次数:
0
Skip to end of metadata Go to start of metadata The procedure to convert FSE2 from an IMG activity to a user transaction/current setting is outlined i ...
分类:
其他好文 时间:
2021-05-25 18:34:50
阅读次数:
0
xdebug 2.8 (貌似3.0以下都可以) [xdebug]xdebug.remote_enable=1xdebug.remote_host=host.docker.internalxdebug.remote_port=9000xdebug.remote_handler=dbgpxdebug.r ...
分类:
其他好文 时间:
2021-05-25 18:12:24
阅读次数:
0
在给2台mysql数据库配置主从同步,配置完成后,在slave上执行“start slave;”报错,提示:ERROR 1200 (HY000): The server is not configured as slave; fix in config file or with CHANGE MAS ...
分类:
数据库 时间:
2021-05-24 17:15:05
阅读次数:
0
安装教程: https://www.cnblogs.com/laumians-notes/p/9069498.html https://blog.csdn.net/weixin_42869365/article/details/83472466 启动 net start mysql 登录 (1234 ...
分类:
数据库 时间:
2021-05-24 16:08:31
阅读次数:
0
开篇废话 telnet 很重要,当升级ssh失败时,无法通过ssh连接服务器时需要用 telnet 连接。 1 ssh -V 查询当前版本 openssl version 2 安装telnet-server yum install xinetd telnet-server -y 2.1 离线安装? ...
分类:
Web程序 时间:
2021-05-24 16:05:20
阅读次数:
0
最近弄得一个小软件,需要用到富文本编辑器,richtextbox,一开始以为是和文本框一样的用法,但是实践起来碰壁之后才知道并不简单。 richtextbox 类似于Word,是一个可编辑的控件。结构图(来自网络) 我的主要用途是用来支持一个基于C#的考试系统,由于考试科目涉及到图片以及还有复杂的数 ...