Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在eclipse rcp 中写一个telnet。那么谁能告诉我应该使用哪个控件?
这里的控制是例如:swt.Text,swt.StyledText。
这取决于很多事情。如果你想在输出中允许任何形式的格式——比如支持 vt100——那么StyledText控制是好的。如果你想让它尽可能简单,我可能会使用 aText作为当前输入,多行Text作为输出。
StyledText
Text
如果您在 RCP 应用程序中拥有更多自由,请考虑将Console视图添加到应用程序。这将提供一种非常优雅的方式来添加 telnet 支持......
Console