- 浏览: 2854 次
- 性别:
- 来自: 珠海
最新评论
文章列表
public static String subStr(String str,int start,int end) throws Exception{
byte[] bytes=str.getBytes("GBK");
String string="";
end=end-start;
if(start>=0&&end>0&&bytes.length>=(end+start)){
if(start!=0){
String tempString=new String( ...
SeparateInterceptor seperateInterceptor=new SeparateInterceptor("T_Mid_PStatDatas",tableName);
Session session=baseDaoImpl.sessionFactory.openSession(seperateInterceptor);
session.update(ps);
session.flush();
我 打印sql 语句 update 执行了 两次