我想在Eclipse RCP应用程序中显示一些日志记录信息。为此,我在一个单独的插件(单例)中创建了一个Eclipse视图。这是我到目前为止的代码:
public class Console extends ViewPart {
private StyledText text;
public Console() {}
@Override
public void createPartControl(Composite parent) {
text = new StyledText(parent, SWT.READ_ONLY | SWT.MULTI | SWT.H_SCROLL
| SWT.V_SCROLL);
}
@Override
public void setFocus() {
this.text.setFocus();
}
public void log(String message){
this.text.append(message);
}
}
配置:
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
category="org.myApp.ui.category.myApp"
class="org.myApp.ui.log.Console"
icon="icons/log.png"
id="org.myApp.ui.view.console"
name="Console"
restorable="true">
</view>
<category
id="org.myApp.ui.category.myApp"
name="myApp">
</category>
</extension>
</plugin>
现在,我想将来自其他插件的消息记录到StyledText
实例。最方便的方法是什么?
我试过approach这很方便,但确实很慢。非常感谢你的帮助:)谢谢!
答案 0 :(得分:0)
Here是关于登录OSGI的一系列文章。
答案 1 :(得分:0)
这是我的控制台部分的后构造方法。基本上它设置一个新的System.out对象并监听它。
@PostConstruct
public void postConstruct(Composite parent) {
System.out.println("[Console Part] ** Post Construct **");
txtConsole = new Text(parent, SWT.READ_ONLY | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL | SWT.BORDER);
out = new OutputStream() {
@Override
public void write(int b) throws IOException {
if( txtConsole.isDisposed() )
return;
txtConsole.append(String.valueOf((char) b));
}
};
// keep the old output stream
final PrintStream oldOut = System.out;
System.setOut(new PrintStream(out));
txtConsole.addDisposeListener(new DisposeListener() {
public void widgetDisposed(DisposeEvent e) {
System.setOut(oldOut);
}
});
}