- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在我的 RCP 中,我显示控制台并希望输出不同类别的输出(不仅仅是 STDERR 和 STDOUT)。我查看并使用了以下代码:
Writing to the Eclipse console
我按照规定完成了所有操作:查找或创建控制台、创建 View 、显示 View ,使用 ConsoleManager。我对其进行了设置,以便日志写入一些“类别”,每个类别对应于 IConsoleManager 中存储的不同控制台。
问题是,输出很少/不可预测地到达控制台:创建每个新控制台时,我都会在上面写一条消息。这仅在调试过程中有时会出现。所有其他控制台似乎都已创建但从未写入。除非我将所有内容写入 STDERR (!?)。
下面的代码是我所做的:
package com.Jasper.util;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.console.ConsolePlugin;
import org.eclipse.ui.console.IConsole;
import org.eclipse.ui.console.IConsoleConstants;
import org.eclipse.ui.console.IConsoleManager;
import org.eclipse.ui.console.IConsoleView;
import org.eclipse.ui.console.IOConsoleOutputStream;
import org.eclipse.ui.console.MessageConsole;
import org.eclipse.ui.console.MessageConsoleStream;
public final class Console {
private static Console mInstance = null;
public static enum ConsoleType { DEFAULT, STDERR, STDOUT, OTHER, ERRORS }
private Console () { }
/**
* Singleton pattern to match Eclipse's console plugin's behavior.
* @return
*/
public static synchronized Console getInstance() {
if (mInstance == null)
mInstance = new Console ();
return mInstance;
}
/**
* With the given ConsoleType enum, look for an existing/open console
* and return it, or if it does not exist, create a new one and return it.
* @param name One of the members of the static enum defined in Console
* @return A non null message console
*/
private static MessageConsole findOrCreateConsole(final String name) {
final ConsolePlugin plugin = ConsolePlugin.getDefault();
final IConsoleManager conMan = plugin.getConsoleManager();
final IConsole[] existing = conMan.getConsoles();
for (final IConsole element : existing)
if (name.toString().compareTo(element.getName()) == 0)
return (MessageConsole) element;
// failed to find existing console, create one:
final MessageConsole myConsole = new MessageConsole(name.toString(), null);
conMan.addConsoles(new IConsole[] { myConsole });
try {
Write (myConsole.newMessageStream(), "Initializing: " + name + "\n");
} catch (Exception e) {
// Platform might not be up yet, silently ignore for now...
}
return myConsole;
}
/**
* Used for quick writes to consoles, this is not in place of std err/out.
* If the given console does not exist it will be created.
*
* @param name
* @param msg
*/
public static void Write (final String name, String msg) {
MessageConsole myConsole = findOrCreateConsole (name);
MessageConsoleStream out = myConsole.newMessageStream ();
out.println(msg);
}
public static void Write (MessageConsoleStream stream, String msg) {
try {
stream.write(msg);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* Return a new output stream for a given console. If the console does
* not exist it will be created.
* @param type A console type defined in Console's ConsoleType enum.
* @return An open stream for writing to.
*/
public static OutputStream GetOutputStream(final String type) {
MessageConsole ib = findOrCreateConsole (type);
IOConsoleOutputStream mcs = ib.newOutputStream();
mcs.setActivateOnWrite(true);
return mcs;
}
/**
* Create consoles for STDERR and STDOUT, redirect all output
* to the in-application console. Should only be called once.
*
*/
public static void init () {
MessageConsole outConsole = findOrCreateConsole (ConsoleType.STDOUT.toString());
IOConsoleOutputStream outStream = outConsole.newOutputStream();
System.setOut(new PrintStream (outStream));
MessageConsole errConsole = findOrCreateConsole (ConsoleType.STDERR.toString());
IOConsoleOutputStream errStream = errConsole.newOutputStream();
System.setErr(new PrintStream (errStream));
}
/**
* Alternate way to bring up the console view. Don't know
* which one is better / the differences.
* @param myConsole Console to show, must not be null.
*/
public static void ShowConsole (IConsole myConsole) {
IWorkbench workbench = PlatformUI.getWorkbench();
IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
IWorkbenchPage page = window.getActivePage();
String id = IConsoleConstants.ID_CONSOLE_VIEW;
IConsoleView view;
try {
view = (IConsoleView) page.showView(id);
view.display(myConsole);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* Show the application console. If the given console is null, attempt
* to find an existing console and use it. If the given console is null
* and no existing consoles exist, exit without doing anything.
*
* @param myConsole An existing console.
*/
public static void DisplayConsole (IConsole myConsole) {
// try to grab any old console and display it if given null
if (myConsole == null) {
final ConsolePlugin plugin = ConsolePlugin.getDefault();
final IConsoleManager conMan = plugin.getConsoleManager();
final IConsole[] existing = conMan.getConsoles();
if (existing.length == 0)
return;
for (final IConsole element : existing)
myConsole = element;
}
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[] {myConsole});
ConsolePlugin.getDefault().getConsoleManager().showConsoleView(myConsole);
}
/**
* Show the console view with the given ConsoleType. Will not
* create one if one does not already exist.
*
* @param type Non-null enum of existing console (stdout/err probably safe)
*/
public static void DisplayConsole (final String type) {
final ConsolePlugin plugin = ConsolePlugin.getDefault();
final IConsoleManager conMan = plugin.getConsoleManager();
final IConsole[] existing = conMan.getConsoles();
for (final IConsole element : existing)
if (type.toString().compareTo(element.getName()) == 0) {
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[] {element});
ConsolePlugin.getDefault().getConsoleManager().showConsoleView(element);
return;
}
}
}
有什么想法吗?
最佳答案
写入输出(stderr
或 stdout
)可能是通过回调或其他线程发生的。按如下方式写入控制台 - 它可能会有所帮助:
public void writeToConsole(String lineToConsole) {
final String lineToWrite = lineToConsole;
Display.getDefault().asyncExec(new IRunnable({
public void run() {
try {
if (!stream.isClosed())
stream.write(lineToWrite);
} catch (Exception ex) {
///if you want to - do something
}
)};
}
关于java - RCP 中的 Eclipse 控制台缺少输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1563326/
我需要检查在我的 RCP 应用程序中启动时是否加载了某些包。我知道有一个“主机 OSGi 控制台”可以显示 Eclipse IDE 中所有插件的状态,但我对这些不感兴趣。 我执行了以下步骤来获取我的应
在 pdb/ipdb 调试中,有用的 interact 命令为我提供了一个功能齐全的交互式 Python 控制台。 但是,这似乎始终是“标准”Python 控制台,即使我使用 ipdb 开始也是如此。
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我搜索过但找不到答案:如何在运行 Emacs 时选择:文件、编辑、选项、缓冲区、工具、C++ 等下拉菜单在控制台模式下?不是终端菜单。 不,F10 不是答案。 最佳答案 如果不是 F10,那么 M-x
我正在制作一个每 20-40 秒截屏一次的 c# 控制台应用程序。 我试过到处找,但所有其他示例都没有使用控制台 这是我到目前为止所做的代码: using System; using System.D
尝试使用 terraform 控制台,新功能。 我使用 tfstate 进入我的项目并运行“terraform 控制台”。 我可以使用常规插值系统获取变量值、数据和资源。但是,模块很难破解,我无法正确
我正在尝试调试一段返回错误的 SQL。我不确定 django 或 mysql 是否处理错误,所以我想通过 django 控制台运行它。 有办法设置吗? 提前致谢。 最佳答案 manage.py dbs
你好是否可以在 JPanel 中绘制 java 控制台返回的内容?你有教程可以遵循吗?谢谢开关 最佳答案 我不记得在哪里找到这个,但我已使用我称为 TextAreaOutputStream 的类将输出
我对 Xcode 甚至编程都有点陌生。 在 Xcode 中,在我的代码中,如何显示控制台并清除屏幕? 我知道我可以使用 Xcode 首选项来完成此操作,但我想以编程方式完成此操作。 最佳答案 这对我有
我正在开发一个 C# 项目,我需要从没有 API 或 Web 服务的安全网站获取数据。我的计划是登录,访问我需要的页面,并解析 HTML 以获取记录到数据库所需的数据位。现在我正在使用控制台应用程序进
我是编程新手,正在尝试不同的在线事件以掌握它。我遇到了一个特定的问题,我想制作一个程序,用户输入一个值并打印一个特定的字符串。例如,当用户输入 0 时,将打印字符串“black”,输入 1 将打印字符
我想创建一个终端/控制台,用户可以在其中输入命令。我知道 java,但我是 xml 的新手,所以我想知道如何在文本下生成文本,如果它变得很长,它应该是可滚动的,这是一张图片: 这是我的 xml cpd
我有一个由随机生成的数字组成的 nxn 网格。我有一个标签显示 X 轴和 Y 轴的元素编号: 对于单个数字,它可以正确对齐,但是当网格大小增加时,标签会变得不成比例并且不会像这样对齐: 我想知道是否有
假设我创建了一个包含两个变量的结构。 struct mystruct{ public: string name; int age;}; class School :public mystruct{ p
我正在重写一个服务器程序,我想在其中添加一个简单的控制台输入。 目前,它只是提供数据并为它所做的每一件事打印出一两行,作为任何观看/调试的人的描述性措施。 我想要的是有一个始终位于底部的“粘性”输入栏
我必须编写启动另一个进程(GUI)的控制台应用程序。然后,使用其他应用程序或相同的选项,我必须能够停止子进程。此外,如果子进程从 GUI 关闭,则必须通知我执行最终任务(如果被杀死,则相同)。 我认为
我一直在尝试到处寻找以下问题的答案: Linux上的标准输出/控制台默认将内容保存到文件中吗? 我不想保存内容或重定向输出(我已经知道这一点),我只是想知道它是否已经通过 linux 中包含的某个默认
我正在尝试不同的事件,因为我是初学者并且想了解更多。我正在尝试在我的代码所在的同一行打印一个图案: int main() { int numOfWiggles; int count;
在我的一项小任务中,我被要求创建一个数组来存储从用户提供的输入中获取的姓名和地址,并且稍后能够从数组中删除姓名和地址。 如果能帮助我理解如何实现这一目标,我们将不胜感激,谢谢。 编辑 - 该数组将像地
如果您想在 Python shell 中查看特定模块中定义了哪些模块,一种选择是键入 dir(path.to.module)。不幸的是,这不仅列出了特定模块中定义的类或函数,还包括该模块导入的类或函数
我是一名优秀的程序员,十分优秀!