上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页
  2019年3月29日
摘要: 1. Overview In this article, we’ll have a very brief look at what Exception is and go in depth about discussing the chained exceptions in Java. Simply 阅读全文
posted @ 2019-03-29 15:30 sidesky 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 思路: 所包含的运算符有‘+’,‘-’,‘*’,‘/’,‘(’,‘)’。 (1)建立两个栈,一个用来存储操作数,另一个用来存储运算符, 开始时在运算符栈中先压入‘/0’,一个表达式的结束符。 (2)然后从左至右依次读取表达式中的各个符号(操作数或者运算符); (3)如果读到的是操作数直接存入操作数栈 阅读全文
posted @ 2019-03-29 01:18 sidesky 阅读(2876) 评论(0) 推荐(0) 编辑
  2019年3月28日
摘要: public class DownloadServer { private int threadCount = 4; private static String fileUrl = "https://dldir1.qq.com/qqtv/mac/TencentVideo_V2.2.1.42253.dmg"; // private static String fileUrl... 阅读全文
posted @ 2019-03-28 20:38 sidesky 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 1.序列化 public class SerializeUtils { public byte[] serialize(T t) { byte[] bytes = null; ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ObjectOutput... 阅读全文
posted @ 2019-03-28 20:30 sidesky 阅读(326) 评论(0) 推荐(0) 编辑
  2019年3月20日
摘要: from:http://blog.csdn.net/iw1210/article/details/11937085 意图:实现select top 1 * from tablename Oracle 中的 ROW_NUMBER() OVER() 分析函数的用法 ROW_NUMBER() OVER(p 阅读全文
posted @ 2019-03-20 20:04 sidesky 阅读(3036) 评论(0) 推荐(0) 编辑
摘要: hive 中窗口函数row_number,rank,dense_ran,ntile分析函数的用法 hive 中窗口函数row_number,rank,dense_ran,ntile分析函数的用法 hive中一般取top n时,row_number(),rank,dense_ran()这三个函数就派上 阅读全文
posted @ 2019-03-20 19:52 sidesky 阅读(1728) 评论(0) 推荐(0) 编辑
摘要: public class SpringLoader { private Map<String, Class<?>> classMap = new HashMap<>(); public void loadJar(String jarPath) throws IOException, ClassNot 阅读全文
posted @ 2019-03-20 16:08 sidesky 阅读(271) 评论(0) 推荐(0) 编辑
摘要: <build> <finalName>detail</finalName> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/ 阅读全文
posted @ 2019-03-20 14:17 sidesky 阅读(262) 评论(0) 推荐(0) 编辑
摘要: In Java, you can load all kinds of resources using the same API but with different URL protocols: file:///tmp.txt http://127.0.0.1:8080/a.properties j 阅读全文
posted @ 2019-03-20 11:40 sidesky 阅读(312) 评论(0) 推荐(0) 编辑
摘要: <build> <finalName>lessons</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> < 阅读全文
posted @ 2019-03-20 10:48 sidesky 阅读(303) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页