Package de.mhus.lib.io

Examples of de.mhus.lib.io.TextStreamReader


  }

  public static void main(String[] args) {
    if (args.length == 0) {
      System.out.print("decoded: ");
      TextStreamReader reader = new TextStreamReader(System.in);
      args = new String[] { reader.readLine() };
    }
    System.out.println("encoded: " + encode(args[0]));
  }
View Full Code Here

TOP

Related Classes of de.mhus.lib.io.TextStreamReader

Copyright © 2018 www.massapicom. 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.