环境
安装libvirt
启动:systemctl start libvirtd.service 不然会报:Failed to connect socket to ‘/var/run/libvirt/libvirt-sock’: No such file or directory
查看libvirt的一些默认配置
查看libvirt的默认网络配置
[root@172.20.11.142]# virsh net-list
Name State A
1、基本概念
1.1、InputStream
最基本的字节输入流,抽象类,定义了读取原始字节的所有基本方法1.1.1、public abstract int read() throws IOException 读取一个字节的方法,最基础的方法1.1.2、public int read(byte b[], int off, int len) 读取指定长度的字节到字节数组,基于方法1.1.11.1.3、public int read(byte b[]) throws IOException 读取一个