- 博客(10)
- 资源 (1)
- 问答 (1)
- 收藏
- 关注
原创 java 使用 poi 导出Excel 根据相同内容动态合并单元格可指定列合并
import com.maidanli.common.utils.DateUtil;import com.maidanli.common.utils.StringUtil;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import org.apache.poi.ss.usermodel.*;import org.apache.poi....
2019-07-31 16:36:42 14579 64
原创 BinaryLogClient解决MySQL8.0报错Client does not support authentication protocol requested by server;
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '你的密码';把caching_sha2_password 改成 mysql_native_password。查询当前插件加密方式。
2024-07-03 15:05:57 190
原创 java 实现shopify的OAuth 2.0认证流程
第一步:在shopify后台创建公共应用(私有的也可以,我创建的是公共的) 附上源码链接注意:不是商店后台,看浏览器链接就知道了 商店后台是 https://商店名.myshopify.com的 不要弄错了第二步:然后去下载一个内网穿透工具ngrok 百度一下就知道怎么用了第三步:去写代码 1、先写一个controller 重定向到shopify package com.mzt.mztshopify.controller;import cn.huto...
2020-06-11 09:56:39 4208 31
原创 java 对象集合排序
@Testpublic void Test() { //数据源 List<ProProductMaster> productMasters = ProProductMaster.me().setLimit(5).find(); System.out.println("--------------排序前---------------------"); for (ProProductMaster productMaster : productMasters) {.
2020-06-05 18:12:29 186
原创 java 通过反射给对象的属性赋值、包含list对象
private static void setSendEmailDto(OrdOrderSendEmailDto dto){ Field[] field = dto.getClass().getDeclaredFields(); try{ for (int i = 0; i < field.length; i++) { String name = field[i].getName(); name = name.sub.
2020-06-01 14:28:00 3370
原创 java webmagic+xpath 获取指定标签下的所有子标签文本
比如我要采集这个id=productDescription标签下的所有子标签的文本内容String content = page.getHtml().xpath(//*[@id=\"productDescription\"]).smartContent().get();这样就可以了 获取下来的数据自动帮你换行的 具体的可以打印出来看一下...
2020-05-22 10:35:21 2326 2
原创 java 实现关系表的增删改操作 比如管理员权限,商品库存等
List<String> userIds= productSecInfos.stream().map(User::getId).collect(Collectors.toList());//查出原有的关系List<String> userIdList = new ArrayList<>(map.keySet());//前端传过来的集合 List<St...
2020-04-30 11:35:57 580
转载 java 根据指定数值均匀的分配到Liat数组
/** * * @param totalNum 传入的数值 * @param count 分配的集合数量 * @return 返回集合 */public static List<Integer> random(int totalNum, int count) { List<Integer> redList = new ArrayList<>...
2020-04-30 11:25:17 725
前台用getJSON怎么循环获取对象里面的list集合信息
2017-11-16
TA创建的收藏夹 TA关注的收藏夹
TA关注的人