アットウィキロゴ

xxdcvgt

class alert{

String readtitle[]=new String[1000];
String readcontent[]=new String[1000];
String readname[]=new String[1000];
int readyear[]=new int[1000];
int readmonth[]=new int[1000];
int readday[]=new int[1000];
int readnumber;
int atcode;
String dbtable;
int s;

public static void main(String [] args) {
        alert test=new alert();
            }

alert(){

atcode=2;
dbtable="alerttable";

alertmain main=new alertmain();
main.makedata();
atread gr=new atread();
gr.makedata(dbtable,atcode);
readtitle=gr.readtitle;
readcontent=gr.readcontent;
readname=gr.readname;
readyear=gr.readyear;
readmonth=gr.readmonth;
readday=gr.readday;
readnumber=gr.readnumber;

for(s=1;s<readnumber+1;s++){
System.out.print(s);
System.out.print(",");
System.out.print(readmonth[s]);
System.out.print(",");
System.out.print(readday[s]);
System.out.print(",");
System.out.println(readname[s]);
System.out.println(readtitle[s]);
}

System.out.print(readcontent[5]);


}


}
最終更新:2011年04月01日 18:09