Loading

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 测试代码 public class SingleTest { public static String v = "StaticValue"; static { System.out.println("static静态变量:" + v); System.out.println("static静态块") 阅读全文
posted @ 2021-03-05 10:14 Convict 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一.字符流:读写纯文本(txt,csv等), 1 字符流写文件主要用:FileWriter,BufferedWriter,PrintWriter 1.1 测试 FileWriter 写入 private void writeFileWriter() throws IOException { try 阅读全文
posted @ 2020-12-23 11:54 Convict 阅读(882) 评论(0) 推荐(0) 编辑
摘要: wget 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_US.c 阅读全文
posted @ 2020-12-11 15:29 Convict 阅读(2223) 评论(0) 推荐(0) 编辑
摘要: [repositories] local aliyun: https://maven.aliyun.com/repository/public oschina: http://maven.oschina.net/content/groups/public/ osgeo: https://repo.o 阅读全文
posted @ 2020-12-05 16:11 Convict 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 查看集群索引 curl 'http://172.10.58.20:9200/_cat/indices' 查看集群状态 curl 'http://172.10.58.20:9200/_cat/health' curl 'http://172.10.58.20:9200/_cluster/health' 阅读全文
posted @ 2020-12-04 16:31 Convict 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Linux有12种Unit,对于个人来讲,用的最多的是Service Unit,下面的Unit均指Service Unit(服务单元) # 启动Unit systemctl start appname.service # 停止Unit systemctl stop appname.service # 阅读全文
posted @ 2020-11-05 11:07 Convict 阅读(823) 评论(0) 推荐(0) 编辑
摘要: MongoDB下载地址 https://www.mongodb.com/try/download/community 1.下载zip版本解压后,放到自定义目录,如图示 2.新建data目录用于存放数据,新建配置文件mongodb.conf,如图示 3.修改配置文件mongodb.conf的内容如下: 阅读全文
posted @ 2020-10-27 17:51 Convict 阅读(1586) 评论(0) 推荐(0) 编辑
摘要: 1.Windows下执行cmd命令 如复制 D:\tmp\my.txt 到D:\tmp\my_by_only_cmd.txt 现文件如图示: 执行代码: private static void runWinCmd() throws IOException, InterruptedException 阅读全文
posted @ 2020-10-27 12:25 Convict 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: 1.rootubuntu中默认是不使用root账户的,当然也是可以开启并设置为默认登录账户的,但ubuntu不建议使用而已,毕竟root账户拥有所有权限,可能会出现一些误操作之类。在普通账户中,如果遇到权限不够的问题,只需要临时提升一下权限(sudo)即可 2.sudo系统管理者(root)的身份执 阅读全文
posted @ 2020-10-21 12:11 Convict 阅读(289) 评论(0) 推荐(0) 编辑
摘要: PostgreSQL Drop DATABASE删除数据库失败,需要结束掉占用的连接 登录PostgreSQL后,执行: SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE datname='数据 阅读全文
posted @ 2020-10-21 11:42 Convict 阅读(1114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页