package com.lzk.test01.test; import lombok.extern.slf4j.Slf4j; import java.io.*; @Slf4j public class IpTest1 { public static void main(String[] args) ...
分类:
其他好文 时间:
2021-06-23 16:23:06
阅读次数:
0
1、cd :进入目录 语法:cd [目标路径] cd [绝对路径] 例:cd /usr/local cd [相对路径] 例:cd test . 表示当前目录 .. 表示上一级目录 / 表示根目录 ~ 表示家目录 2、pwd :显示当前所在路径 pwd 3、ls: 查看目录 ls : 只显示目录文件 ...
分类:
系统相关 时间:
2021-06-22 18:26:02
阅读次数:
0
报错信息: PHP Warning: Packets out of order. Expected 1 received 56. Packet size=3420216 in /data/bogiang/test/EC/swoole_process.php on line 62 Warning: P ...
分类:
数据库 时间:
2021-06-22 18:19:52
阅读次数:
0
PreparedStatement方法执行sql语句 package com.lwb.preparedstatement.crud; import org.junit.jupiter.api.Test; import java.io.InputStream; import java.sql.Conn ...
分类:
数据库 时间:
2021-06-22 18:04:16
阅读次数:
0
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:
其他好文 时间:
2021-06-21 21:11:29
阅读次数:
0
dockerfile就是用来构建docker镜像的构建文件 写入命令脚本 通过这个脚本可以生成镜像,镜像是一层一层的,脚本一个个的命令,每个命令都是一层 [root@iZmu0fa4hv0jwzZ home]# mkdir docker-test-volume [root@iZmu0fa4hv0jw ...
分类:
其他好文 时间:
2021-06-21 20:36:25
阅读次数:
0
import 'dart:io' as Io; import 'package:image/image.dart'; void main() { // Read a jpeg image from file. Image image = decodeImage(new Io.File('test.j ...
分类:
其他好文 时间:
2021-06-21 20:21:50
阅读次数:
0
1、创建topic 使用 kafka-topics.sh脚本 kafka-topics.sh --create --partitions 3 --replication-factor 2 --topic test --zookeeper hadoop01:2181,hadoop02:2181,had ...
分类:
其他好文 时间:
2021-06-20 18:38:22
阅读次数:
0
有时候,我们想要查找Python安装路径及第三方库的存放路径,但可能忘记了当初安装时的具体路径,这个时候我们就可以通过命令快速找到这些路径。 查找Python安装路径 Windows下查找命令:where python3 D:\>where python3 D:\Python\installatio ...
分类:
编程语言 时间:
2021-06-20 18:12:11
阅读次数:
0