摘要:
查看防火墙状态 service iptables status 临时开启/关闭防火墙 service iptables start service iptables stop 永久关闭防火墙(重启后生效) chkconfig iptables --list chkconfig iptables on 阅读全文
摘要:
1. 字符串有整型的相互转换 String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2. 向文件末尾添加内容 Buffered 阅读全文