技术
文章平均质量分 61
Alice_8899
这个作者很懒,什么都没留下…
展开
-
解决SSLHandshakeException :sun.security.validator.ValidatorException: PKIX path building failed:
详细分析Java中访问https请求exception(SSLHandshakeException, SSLPeerUnverifiedException)的原因及解决方法。1、现象用JAVA测试程序访问下面两个链接。https链接一:web服务器为jetty,后台语言为java。https链接二:web服务器为nginx,后台语言为php。链接一能正常访问,访问链接二报异常,且用Htt...转载 2019-12-16 11:11:49 · 3036 阅读 · 0 评论 -
发送邮件工具类及操作(例子)
1.所需要工具类 1.1ExcelUtil工具 package com.finlabtech.pinjamancepatanalyse.util;import org.apache.poi.hssf.util.HSSFColor;import org.apache.poi.ss.usermodel.*;import org.apache.poi.xssf.usermodel.XSSF...原创 2018-03-07 11:42:31 · 1120 阅读 · 0 评论 -
解析Excel表(总结)
1.解析.xls和.xlsx格式表格代码: String prefix = fileName.substring(fileName.lastIndexOf(".") + 1); Workbook wb = null; if ("xls".equals(prefix)) { FileInputStream fis = null; ...原创 2018-02-27 16:26:49 · 745 阅读 · 0 评论 -
HTTPClientUtil工具
package com.finlabtech.pinjamancepatanalyse.util;import com.google.common.base.Predicates;import com.google.common.collect.Maps;import lombok.extern.slf4j.Slf4j;import org.apache.commons.collecti...原创 2018-02-27 18:05:25 · 223 阅读 · 0 评论 -
map的遍历(自己认为比较好的)
第一种:for (Integer in : map.keySet()) { //map.keySet()返回的是所有key的值 String str = map.get(in);//得到每个key多对用value的值 System.out.println(in + " " + str); }第二种:推荐,尤其...原创 2018-02-28 11:49:24 · 155 阅读 · 0 评论 -
枚举类型(实例)
public enum ChannelEnum { android(1L, "android"); private Long value; private String text; ChannelEnum(Long value, String text){ this.value = value; this.text = text;...原创 2018-03-08 11:40:39 · 240 阅读 · 0 评论 -
Java的getCanonicalName和getName
http://blog.csdn.net/hustzw07/article/details/71108945转载 2018-03-13 11:10:50 · 257 阅读 · 0 评论 -
多条件分页查询
只有继承JpaSpecificationExecutor<>类,才能多条件分页查询。eg:@Overridepublic Page<OrderHistory> findAll(Pageable pageable, Long userId, Long orderId) { return orderHistoryRepository.findAll((root, qu...原创 2018-03-14 17:10:18 · 502 阅读 · 0 评论