10 2019 档案
-
终止线程池对应某个线程
摘要:加入某个线程池中有多个线程: ThreadPool.addThread(t1); ThreadPool.addThread(t2); ... ThreadPool.addThread(tn); 现在想终止第m个线程做法思想如下: ①创建一个hashMap,将所创建的线程以及对应每个线程唯一标识放进去 阅读全文
-
下载文件并将下载成功的文件考入另一个目录
摘要://下载资源 try { URL urlfile = null; HttpURLConnection httpUrl = null; BufferedInputStream bis = null; BufferedOutputStream bos = null; urlfile = new URL(downloadPath); httpUrl = (HttpURLConnection) urlfi 阅读全文
-
centos7安装mysql5.7
摘要:下载地址:https://dev.mysql.com/downloads/file/?id=476936 1、解压并创建文件 ftp上传到服务器 /user/local/目录下(目录可以自己定) 使用命令 ,对mysql进行解压缩 [root@localhost local]# tar -zxvf mysql-5.7.22-linux-glibc2.12-x86_64.tar 使用命令,对解压后的 阅读全文