using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Linq; using System.Reflection; using System.Text; using System.Text.RegularExpressions; namespace HuaTong.General.U…
自从学了JDBC用多了像一下这种代码: List<xxx> list = new Array<xxx>(); if(rs.next()){ xxx x = new xxx(); x.setxxx(rs.getString("xxx")); x.setsss(rs.getString("sss")); list.add(x); } 这类相似的代码每天都在用,每天都在copy,相信大家早就已经烦了 今天!Today!Java程序员的福利来了 最近…