上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: package com.tongtu.styh.utils;import com.tongtu.styh.bean.model.jxpj.xmcq.CQResultPojo;import java.math.BigDecimal;import java.util.ArrayList;import j 阅读全文
posted @ 2021-05-18 17:27 懂得归零 阅读(411) 评论(0) 推荐(0) 编辑
摘要: private static void method() { BigDecimal a1 = new BigDecimal(7); BigDecimal a2 = new BigDecimal(4); BigDecimal r = a2.divide(a1,3,BigDecimal.ROUND_HA 阅读全文
posted @ 2021-04-30 15:08 懂得归零 阅读(6393) 评论(0) 推荐(0) 编辑
摘要: @Select("<script>" + "select top ${pageSize} * from (" + "select row_number() over(order by K6001,k0101) as rownumber,name " + "from ${dataBaseName}.d 阅读全文
posted @ 2021-04-07 19:28 懂得归零 阅读(93) 评论(0) 推荐(0) 编辑
摘要: var html = '<div style="height: 400px; width: 460px; border: 1px solid #d7d3d3; margin: 0px auto;">'+ ' <div class="btns"> <div id="thelist" class="up 阅读全文
posted @ 2021-03-10 14:35 懂得归零 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 1、引入WebUploader.js文件 <link type="text/css" rel="Stylesheet" href="~/Content/js/webuploader/webuploader.css" /> <script type="text/javascript" src="~/C 阅读全文
posted @ 2021-03-10 13:44 懂得归零 阅读(2737) 评论(0) 推荐(0) 编辑
摘要: 1、UPDATE pg_database SET datistemplate='false' WHERE datname='DB'; 2、SELECT * from pg_database where datname='DB'; 3、DROP DATABASE DB; 阅读全文
posted @ 2021-02-26 09:26 懂得归零 阅读(299) 评论(0) 推荐(0) 编辑
摘要: List<Map<String, Object>> list = new ArrayList<>();for (int i = 1; i <= 4; i++) { Map<String, Object> map = new HashMap<>(); map.put("age", 9 + i); li 阅读全文
posted @ 2021-02-03 10:35 懂得归零 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1、简介 1、jsoup 是一款Java 的HTML解析器 2、jsoup主要功能 1、从一个URL,文件或字符串中解析HTML 2、使用DOM或CSS选择器来查找、取出数据 3、可操作HTML元素、属性、文本 3、使用 1、从一个url中加载Document对象 Document document 阅读全文
posted @ 2021-01-18 11:06 懂得归零 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1、删除标签 $("#div1").remove(); 2、添加/移除标签属性 $("#id").removeAttr("id");$("img").attr("width","180"); 3、添加样式 $("#id").css("display","inline"); 4、页面加载完成后执行方法 阅读全文
posted @ 2020-12-30 14:47 懂得归零 阅读(619) 评论(1) 推荐(0) 编辑
摘要: 1**:信息,服务器收到请求,需要请求者继续执行操作 2**:成功 3**:重定向,需要进一步操作完成请求 4**:客户端错误,请求包含语法错误或无法完成请求 5**:服务器错误,服务器在处理请求的过程中发生错误 参考网址:https://www.runoob.com/http/http-statu 阅读全文
posted @ 2020-12-16 14:14 懂得归零 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页