package pdf2;
import tool.*;
public class pro {
String[] data=new String[5000];
String[] title=new String[50];
String[] subdata=new String[5000];
int subnumber,datanumber;
public static void main(String[] args) {
pro te=new pro();
}
pro(){
int tr;
for(tr=1;tr<15;tr++){
readfile sub3=new readfile();
sub3.makedata(tr+".txt","UTF-8");
subdata=sub3.data;
subnumber=sub3.datanumber;
int s,sx;
String str;
str="";
sx=0;
for(s=9;s<subnumber+1;s++){
sx=sx+1;
data[sx]=subdata[s];
}
datanumber=sx;
title[1]=subdata[7];
makepdf sub=new makepdf();
sub.title=title;
sub.data=data;
sub.number=subnumber;
sub.makedata("abc"+tr+".pdf");
}
}
}
最終更新:2015年05月02日 20:29