随笔分类 -  代码集

常用代码
摘要://1.引入jar <!--自定义公式计算类库--> <dependency> <groupId>com.scireum</groupId> <artifactId>parsii</artifactId> <version>1.5</version> </dependency> //2.源码如下pa 阅读全文
posted @ 2021-08-11 11:06 不忘初心5470 阅读(2273) 评论(2) 推荐(0)
摘要:public static void main(String[] args) { List<Integer> list = new ArrayList<>(); for (int i = 1; i <= 1000; i++) { list.add(i); } System.out.println(l 阅读全文
posted @ 2021-08-11 10:52 不忘初心5470 阅读(599) 评论(0) 推荐(0)
摘要:1. 前端代码 $(function(){ //前台调用 test(); }); //测试方法 function test() { var data = [ { "applicationtypeid": "65", "applicationsystemid": "30", "userList": [ 阅读全文
posted @ 2021-06-03 10:39 不忘初心5470 阅读(1403) 评论(0) 推荐(0)
摘要:一. String scheme = request.getScheme();//http String serverName = request.getServerName();//localhost int port = request.getServerPort();//8080 String 阅读全文
posted @ 2019-02-28 10:07 不忘初心5470 阅读(2627) 评论(0) 推荐(0)