摘要: 安装环境:CentOS 6.4 一、安装telnet1、检测telnet-server的rpm包是否安装 [root@localhost ~]# rpm -qa telnet-server 若无输入内容,则表示没有安装。出于安全考虑telnet-server.rpm是默认没有安装的,而telnet的客户端是标配。即下面的软件是默认安装的。2、若未安装,则安装telnet-server,否则忽略此步... 阅读全文
posted @ 2017-06-26 22:32 edgedance 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 1 api java.util.concurrent包下的新类。LinkedBlockingQueue就是其中之一,是一个阻塞的线程安全的队列,底层采用链表实现。 LinkedBlockingQueue构造的时候若没有指定大小,则默认大小为Integer.MAX_VALUE,当然也可以在构造函数的参数中指定大小。LinkedBlockingQueue不接受null。 ... 阅读全文
posted @ 2017-06-26 19:23 edgedance 阅读(34101) 评论(0) 推荐(0) 编辑
摘要: public static String runShell(String command){ try{ String[] commands = isLinux()?new String[]{"/bin/sh","-c",command}:new String[]{"cmd","/c",command}; Process process = Runtime.g... 阅读全文
posted @ 2017-06-26 11:13 edgedance 阅读(499) 评论(0) 推荐(0) 编辑