Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two ...
分类:
其他好文 时间:
2018-06-16 10:27:48
阅读次数:
181
安装win sdk 8,提示错误:管道正在被关闭。 查看安装log文件,有如下错误: Error 0x800700e8: Failed to write message type to pipe.Error 0x800700e8: Failed to write send message to pi ...
JSP基础语法 1、JSP模版元素 JSP页面中的HTML内容称之为JSP模版元素。 JSP模版元素定义了网页的基本骨架,即定义了页面的结构和外观。 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2、JSP表 ...
分类:
Web程序 时间:
2018-06-14 23:58:43
阅读次数:
352
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2018-06-14 18:16:46
阅读次数:
139
文章目录 项目地址:https://github.com/wz2cool/mybatis-dynamic-query文档地址:https://wz2cool.gitbooks.io/mybatis-dynamic-query-zh-cn/content/ 简介 更新和插入的问题其实是一样的,基本上我 ...
分类:
其他好文 时间:
2018-06-14 18:10:42
阅读次数:
288
import org.jdom.Document; import org.jdom.Element; import org.jdom.input.SAXBuilder; public static String xmlToJSON(String xml,int jsonType) { JSONObj ...
分类:
Web程序 时间:
2018-06-14 15:12:46
阅读次数:
233
结果与DES算法工具一致 import java.security.SecureRandom; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; impor ...
分类:
其他好文 时间:
2018-06-14 15:09:02
阅读次数:
220
spring中的事务 spring怎么操作事务的: 事务的转播行为: 事务代码转账操作如下: 接口: 实现类: servoce层接口 service实现类: 分析: XML配置式实现事务: 原理; xml配置式,中java写法: 1、打开事务 2、调用doInTransactionWithoutRe ...
分类:
编程语言 时间:
2018-06-14 01:01:17
阅读次数:
182