A utility to convert UCS/Unicode data to MARC-8.
The MARC-8 to Unicode mapping used is the version with the March 2005 revisions.
184185186187188189190191192193194
writer = new MarcStreamWriter(out); if (convert != null) { CharConverter charconv = null; if (Constants.MARC_8_ENCODING.equals(convert)) charconv = new UnicodeToAnsel(); else if (Constants.ISO5426_ENCODING.equals(convert)) charconv = new UnicodeToIso5426(); else if (Constants.ISO6937_ENCODING.equals(convert)) charconv = new UnicodeToIso6937(); else {