vote up -2 vote down star

How can I redirect output messages to the console view of my Java plugin?

flag
private MessageConsole findConsole(String name) { ConsolePlugin plugin = ConsolePlugin.getDefault(); IConsoleManager conMan = plugin.getConsoleManager(); IConsole[] existing = conMan.getConsoles(); for (int i = 0; i < existing.length; i++) if (name.equals(existing[i].getName())) return (MessageConsole) existing[i]; //no console found, so create a new one MessageConsole myConsole = new MessageConsole(name, null); conMan.addConsoles(new IConsole[]{myConsole}); myConsole.activate(); return myConsole; } – DAHI Nouha Aug 12 at 8:54
in my plugin i execute commands from GUIs, i need to display the output in a console view. this code returns nullpointer exception. – DAHI Nouha Aug 12 at 8:54

1 Answer

vote up 2 vote down

Can you give more explanations ? What is your "java plugin" ? What do you call output messages ? What goes out of System.out ? A log system ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.