Examples of ConversionParameters


Examples of de.ddb.conversion.ConversionParameters

  @Test
  public void testConvert() throws ConverterException, IOException {
    try {
      final MabToMabDiskette converter = new MabToMabDiskette();
      final ConversionParameters params = new ConversionParameters();
      params.setSourceCharset("x-MAB");
      params.setTargetCharset("UTF-8");
      converter.convert(in, out, params);
      out.flush();
    } finally {
      try {
        this.in.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.