package yuku.alkitabconverter.de_luther1912; import java.io.RandomAccessFile; import java.nio.charset.Charset; import java.util.List; import yuku.alkitabconverter.yes1.Yes1File; import yuku.alkitabconverter.yes1.Yes1File.InfoEdisi; import yuku.alkitabconverter.yes1.Yes1File.InfoKitab; import yuku.alkitabconverter.yes1.Yes1File.Teks; import yuku.alkitabconverter.unboundbible.UnboundBibleReader; import yuku.alkitabconverter.util.Rec; import yuku.alkitabconverter.util.RecUtil; import yuku.alkitabconverter.yes_common.Yes1Common; public class Proses1 { public static final String TAG = Proses1.class.getSimpleName(); static String INPUT_TEKS_1 = "./bahan/de-luther1912/in/german_luther_1912_utf8.txt"; static String INPUT_TEKS_ENCODING = "utf-8"; static int INPUT_TEKS_ENCODING_YES = 2; // 1: ascii; 2: utf-8; static String INPUT_KITAB = "./bahan/de-luther1912/in/de-luther1912-kitab.txt"; static String OUTPUT_YES = "./bahan/de-luther1912/out/de-luther1912.yes"; static int OUTPUT_ADA_PERIKOP = 0; static String INFO_NAMA = "de-luther1912"; static String INFO_JUDUL = "Lutherbibel (1912)"; static String INFO_KETERANGAN = "1912 revision of Martin Luther's translation of the Bible"; final static Charset utf8 = Charset.forName("utf-8"); public static void main(String[] args) throws Exception { new Proses1().u(); } private void u() throws Exception { List<Rec> xrec = UnboundBibleReader.parse(INPUT_TEKS_1, 0, 1, 2, 3); //2); // post-process for (Rec rec: xrec) { rec.text = rec.text.replace(" {~}", ""); } ////////// PROSES KE YES final InfoEdisi infoEdisi = Yes1Common.infoEdisi(INFO_NAMA, null, INFO_JUDUL, RecUtil.hitungKitab(xrec), OUTPUT_ADA_PERIKOP, INFO_KETERANGAN, INPUT_TEKS_ENCODING_YES, null); final InfoKitab infoKitab = Yes1Common.infoKitab(xrec, INPUT_KITAB, INPUT_TEKS_ENCODING, INPUT_TEKS_ENCODING_YES); final Teks teks = Yes1Common.teks(xrec, INPUT_TEKS_ENCODING); //final PerikopBlok perikopBlok = new PerikopBlok(perikopData); //final PerikopIndex perikopIndex = new PerikopIndex(perikopData); Yes1File file = Yes1Common.bikinYesFile(infoEdisi, infoKitab, teks); //, perikopBlok, perikopIndex); file.output(new RandomAccessFile(OUTPUT_YES, "rw")); } }