Simple GIS

GISプログラムの練習

次世代

package stat2;


public class pro {

    int number;
    String id=new String[5000];
    String name=new String[5000];
      String code=new String[5000];
int s,datanumber,creditnumber;
String data=new String[5000];
    
    public static void main(String[] args) {
       pro test=new pro();
    }
pro(){
    
    
   search sub2=new search();
   sub2.makedata("平成3年社会生活基本調査");
   number=sub2.number;
   id=sub2.id;
    
   
String x1=id[2];

credit sub3=new credit();
sub3.makedata(x1);
name=sub3.name;
code=sub3.code;
creditnumber=sub3.number;

for(s=1;s<creditnumber+1;s++){
System.out.println(name[s]+","+code[s]);
}

    xml sub=new xml();
    sub.makedata(x1);
    data=sub.data;
    datanumber=sub.datanumber;
    
    for(s=1;s<datanumber+1;s++){
System.out.println(data[s]);
}

    
    
}
}