上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页

2019年10月29日

摘要: 加入某个线程池中有多个线程: ThreadPool.addThread(t1); ThreadPool.addThread(t2); ... ThreadPool.addThread(tn); 现在想终止第m个线程做法思想如下: ①创建一个hashMap,将所创建的线程以及对应每个线程唯一标识放进去 阅读全文
posted @ 2019-10-29 20:01 james-roger 阅读(2156) 评论(0) 推荐(1) 编辑

2019年10月23日

摘要: //下载资源 try { URL urlfile = null; HttpURLConnection httpUrl = null; BufferedInputStream bis = null; BufferedOutputStream bos = null; urlfile = new URL(downloadPath); httpUrl = (HttpURLConnection) urlfi 阅读全文
posted @ 2019-10-23 18:06 james-roger 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 下载地址: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 使用命令,对解压后的 阅读全文
posted @ 2019-10-23 09:51 james-roger 阅读(133) 评论(0) 推荐(0) 编辑

2019年9月16日

摘要: package com.example.demo.dxf2svg; import com.aspose.cad.InterpolationMode; import com.aspose.cad.SmoothingMode; import com.aspose.cad.TextRenderingHint; import com.aspose.cad.imageoptions.CadRasteri... 阅读全文
posted @ 2019-09-16 09:05 james-roger 阅读(3144) 评论(2) 推荐(0) 编辑

2019年8月22日

摘要: endtime 是 timestamp select to_char(endtime, 'yyyy-MM-dd') as d , count(objectid) FROM sde.polygon where endtime>='2004-09-01 00:00:00' and endtime <=' 阅读全文
posted @ 2019-08-22 09:12 james-roger 阅读(4512) 评论(0) 推荐(0) 编辑

2019年7月16日

摘要: 阅读全文
posted @ 2019-07-16 12:12 james-roger 阅读(226) 评论(0) 推荐(0) 编辑

2019年7月1日

摘要: SELECT * FROM USER t ORDER BY nlssort(FIRSTNAME, 'NLS_SORT=SCHINESE_PINYIN_M') 阅读全文
posted @ 2019-07-01 14:08 james-roger 阅读(641) 评论(0) 推荐(0) 编辑

2019年6月20日

摘要: 如果是更新已经存在的记录里面的某个字段,可以这样实现: 阅读全文
posted @ 2019-06-20 15:33 james-roger 阅读(183) 评论(0) 推荐(0) 编辑
摘要: package com.example.demo; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; /** * Created by Administrator on 2019/6/19. */ public class URLEncode { public static void... 阅读全文
posted @ 2019-06-20 10:12 james-roger 阅读(576) 评论(0) 推荐(0) 编辑

2019年6月12日

摘要: java.lang.IllegalStateException: Unexpected use of scheduler. 在启动类加: 阅读全文
posted @ 2019-06-12 19:09 james-roger 阅读(1767) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页