Package de.mhus.lib.io

Examples of de.mhus.lib.io.TextStreamReader.readLine()


  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
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.