- 浏览: 4871 次
- 性别:
- 来自: 北京
最新评论
文章列表
js代码:headers: { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"},
后台代码:request.setCharacterEncoding("utf-8");
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.text.StrSubstitutor;
import bsh.Interpreter;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
Test t = new Test();
Map map = new HashMap();
map.put("N1", new Integ ...
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
Map map = new HashMap();
for(int i =1;i<=41;i++){
map.put(Integer.valueOf(i), Integer.valueOf(i));
...