摘要: import org.apache.commons.httpclient.DefaultHttpMethodRetryHandler;import org.apache.commons.httpclient.HttpClient;import org.apache.commons.httpclien 阅读全文
posted @ 2020-07-28 17:40 zhuyanhua4833 阅读(299) 评论(0) 推荐(0)
摘要: package com.evergrandelife; import java.io.*;import java.math.BigDecimal;import java.util.ArrayList;import java.util.List; import javax.xml.rpc.Parame 阅读全文
posted @ 2020-07-28 17:09 zhuyanhua4833 阅读(247) 评论(0) 推荐(0)
摘要: 一、配置文件db.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://127.0.0.1:3306/test username=root password= min=5 max=20 二、DbUtil用于生成连接 package com. 阅读全文
posted @ 2020-07-23 19:33 zhuyanhua4833 阅读(1096) 评论(0) 推荐(0)
摘要: 遍历 ArrayList 实例 import java.util.*; public class Test{ public static void main(String[] args) { List<String> list=new ArrayList<String>(); list.add("H 阅读全文
posted @ 2020-07-23 19:26 zhuyanhua4833 阅读(357) 评论(0) 推荐(0)
摘要: Java使用POI读取和写入Excel指南 做项目时经常有通过程序读取Excel数据,或是创建新的Excel并写入数据的需求;网上很多经验教程里使用的POI版本都比较老了,一些API在新版里已经废弃,这里基于最新的Apache POI 4.0.1版本来总结一下整个读取和写入Excel的过程,希望能帮 阅读全文
posted @ 2020-07-23 19:25 zhuyanhua4833 阅读(504) 评论(0) 推荐(0)
摘要: @RequestMapping("/bookController.role_permissions") public ModelAndView RolePermi(HttpServletRequest request) { ArrayList<RolePermissions> list = new 阅读全文
posted @ 2020-07-23 19:00 zhuyanhua4833 阅读(450) 评论(0) 推荐(0)
摘要: package com.library.controller; import com.library.bean.Book;import com.library.bean.Lend;import com.library.bean.ReaderCard;import com.library.servic 阅读全文
posted @ 2020-07-23 15:12 zhuyanhua4833 阅读(173) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/hider/p/12023373.html 普通的 update 都是根据条件来对部分列的内容进行修改,用法如下: update temp_cwh_table set name = 'xxx' where id = 1; 假设现在有2张表:A、B,需要 阅读全文
posted @ 2020-07-22 10:50 zhuyanhua4833 阅读(371) 评论(0) 推荐(0)
摘要: https://www.w3cschool.cn/ 阅读全文
posted @ 2020-07-22 10:40 zhuyanhua4833 阅读(160) 评论(0) 推荐(0)
摘要: begin -- Call the procedure pkg_new_bddj3_20200703.p_insert_websale_main_piece_v3(to_date('2020-07-02','yyyy-mm-dd'),null);end;/ create or replace pac 阅读全文
posted @ 2020-07-22 08:42 zhuyanhua4833 阅读(406) 评论(0) 推荐(0)