摘要: 1 String sql = "insert into table *****"; 2 //必须要有这句,要不然效果不明显 3 con.setAutoCommit(false); 4 ps = con.prepareStatement(sql); 5 for(int i=1; i<102030; i++){ 6 ps.addBatch(); 7 // 1w条记录插入... 阅读全文
posted @ 2017-01-08 22:17 wangguoning 阅读(1789) 评论(1) 推荐(0) 编辑
摘要: 1 package ABC1; 2 3 import java.io.BufferedReader; 4 import java.io.File; 5 import java.io.FileReader; 6 import java.io.FileWriter; 7 import java.io.IOException; 8 import java.util.Random; ... 阅读全文
posted @ 2017-01-08 21:45 wangguoning 阅读(664) 评论(0) 推荐(0) 编辑
摘要: JSON--JavaScript Object Notation,是一种轻量级的数据交互格式,本质是特定格式的字符串,相比xml更简洁,现在是客户端与服务器端交互的最常用选择,已经很少用xml了 JSON格式:1.JSON对象{key1:value1,key2:value2,} 2.JSON数组[v 阅读全文
posted @ 2016-12-10 23:35 wangguoning 阅读(28078) 评论(1) 推荐(1) 编辑
摘要: 首先导入js文件 阅读全文
posted @ 2016-12-10 22:54 wangguoning 阅读(4213) 评论(0) 推荐(0) 编辑
摘要: 因为request请求都是ISO-8859-1,而jsp页面是采用UTF-8编码,所以当传递的参数有中文时,页面会出现乱码,但是可以将取到的数据通过String的构造函数使用指定的编码类型重新构造一个String对象解决乱码问题 阅读全文
posted @ 2016-12-09 21:02 wangguoning 阅读(8905) 评论(0) 推荐(0) 编辑
摘要: Insert title here Insert title here 阅读全文
posted @ 2016-12-09 20:35 wangguoning 阅读(284) 评论(0) 推荐(0) 编辑
摘要: Insert title here sds Insert title here 阅读全文
posted @ 2016-12-09 20:32 wangguoning 阅读(2665) 评论(0) 推荐(0) 编辑
摘要: 这是对话窗口 阅读全文
posted @ 2016-11-29 09:10 wangguoning 阅读(663) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi.entity; //地区 public class Region { //地区id private String regionID; //地区名称 private String regionName; //上级地区id private String parentRegionID; ... 阅读全文
posted @ 2016-11-29 09:07 wangguoning 阅读(932) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <!-- 1、JQuery的js包 --> <script type="text/javascript" src="jquery 阅读全文
posted @ 2016-11-29 09:00 wangguoning 阅读(405) 评论(0) 推荐(0) 编辑