形態要素

class pro{

String bun,word;
String[] surface=new String[100];
String[] reading=new String[100];
String[] pos=new String[100];
int wordnumber;
int s;

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

pro(){

word="東京電力福島第一原発の事故による放射能汚染水の海への放出が10日にも終わる見通しになった。";

yahoo yh=new yahoo();
bun=yh.makedata(word);

xml x=new xml();
x.makedata(bun);
surface=x.surface;
pos=x.pos;
reading=x.reading;
wordnumber=x.wordnumber;

for(s=1;s<wordnumber+1;s++){
System.out.println(reading[s]);
}


}

}
最終更新:2011年04月10日 04:29