class view{
int[] zcode=new int[100000];
int s,cnumber;
String[] title=new String[100000];
String[] content=new String[100000];
String dbtable;
public static void main(String args[]){
view test=new view();
}
view(){
dbtable="maintable2";
check ch=new check();
ch.makedata(dbtable);
title=ch.title;
content=ch.content;
zcode=ch.zcode;
cnumber=ch.cnumber;
System.out.println(cnumber);
for(s=1;s<100;s++){
System.out.println(content[s]);
}
}
}
最終更新:2011年04月11日 08:17