Eclipse führt Ausgabe in falscher Konsole aus
-
Hallo
Also folgendes Problem. Habe ein plugin erstellt. Wird dieses in den PluginOrdner von Eclipse kopiert sind zwar die Symbole in der Symbolleiste von eclipse also plugin ist installiert aber es gibt ein Problem beim Code. Ich habe da normale System.out.println drin nun zum problem.
Wenn ich das Plugin mit Run-time Workspace teste läuft es nur das Problem ist das es die Konsole von der Workspace benutzt und nicht die des Runtime workspace. Hmmm das hat dann zur folge ,dass wenn das Plugin, auf ein frisch installiertes Eclipse, in den PluginOrdner gelegt wird, beim klicken auf den Button/Symbol die Ausgabe des Programmes nicht sichtbar wird. Woran liegt das.
Gruss
-
Das habe ich gefunden:
Habe ich das richtig verstanden muss ich selber ein view schreiben wie geht den das???The console is used to display the output of user programs. Plugins may not
write to it. If you need to record error information, you should use the
.log file (MyPlugin.getPlugin().getLog())If you simply want to print out information to help you debug your plugin,
you can use System.out.println. If you start Eclipse with java instead of
javaw, these lines will be printed to the console which started Eclipse.If your plugin needs to display some sort of console-like output to the
user, then you'll probably need to write your own view for this.