/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package testapps; import java.io.Console; /** * * @author tomuell */ public class I18n { public static void main(String[] args) { String msg = "Befehl(e) mit höchster Übereinstimmung:"; System.out.println("msg = " + msg); Console c = System.console(); if (c == null) { System.out.println("console is null"); } else { System.out.println("console is not null"); c.writer().print("console msg = " + msg); c.flush(); } } }