<%@page import="com.amarsoft.are.jbo.*"%> <%@ page contentType="text/html; charset=GBK"%><%@ include file="/IncludeBeginMDAJAX.jsp"%><% BizObjectManager bm = JBOFactory.getBizObjectManager("jbo.example.EXAMPLE_INFO"); int i=0; for(;i<70000;i++){ String sID = DBKeyHelp.getSerialNo("EXAMPLE_INFO", "ExampleId"); System.out.println("ExampleId=="+sID); BizObject bo = bm.newObject(); bo.setAttributeValue("ExampleId", sID).setAttributeValue("ExampleName", "Name"+i); bm.saveObject(bo); } out.print(String.valueOf(i)); %><%@ include file="/IncludeEndAJAX.jsp"%>