07 2022 档案
摘要:--转化为xml格式,去掉根节点,形成一行--select ','+(field009)+'-'+(field010) from ufv2m7k41656039640871 where field007<0 order by field010 asc for xml path('')select S
阅读全文
摘要:table{ width: 100%; } table td, table th { font-size: 14px; border: 1px solid #cad9ea; height: 45px; text-align: center; } .direct-search{ margin-top:
阅读全文
摘要:处理前 解决方法给table表格添加 font-size: 0;属性就可以解决了
阅读全文
摘要:<%! public String dou(double d) { DecimalFormat df = new DecimalFormat(); df.setMaximumFractionDigits(2);//这里是小数位 String format = df.format(d); String
阅读全文
摘要:<%@ page import="com.velcro.base.Globals" %> <%@page import="com.velcro.base.label.service.LabelService" %> <%@page import="com.velcro.kernel.base.IPa
阅读全文
摘要:1.通过在职位天数和职位等级,得出年总天数 1.jsp <tr> <th scope="col" width="1%">Formula</th> <th scope="col" width="1%">Service Year</th> <th width="12%">JobGrade</th> <t
阅读全文
摘要:返回double型的 1.能四舍五入 double d = 114.145; d= (double) Math.round(d * 100) / 100.0; System.out.println(d); 2. BigDecimal.ROUND_HALF_UP表示四舍五入,BigDecimal.RO
阅读全文