IntelliJ 为什么/如何在 Netbeans 中引起调试输出?
昨天我正在使用 Netbeans 调试 Java 应用程序。 (即应用程序在附加调试器的情况下运行)同时我正在 Rails 应用程序上使用 IntelliJ。
我注意到 Netbeans 调试输出窗口中有两条奇怪的消息:
Exception "java.lang.ClassNotFoundException:
com.intellij.codeInsight.editorActions.FoldingTransferableData$FoldingData"
while constructing DataFlavor for: application/x-java-jvm-local-objectref;
class=com.intellij.codeInsight.editorActions.FoldingTransferableData$FoldingData
以及
Exception "java.lang.ClassNotFoundException:
com.intellij.codeInsight.editorActions.ReferenceTransferableData$ReferenceData"
while constructing DataFlavor for: application/x-java-jvm-local-objectref;
class=com.intellij.codeInsight.editorActions.ReferenceTransferableData$ReferenceData
出于好奇:这里发生了什么?
如果重要的话:我正在使用 Netbeans 7.0.1 和 IntelliJ 10.5.2(评估)使用 Ruby 插件。
Yesterday I was debugging a Java application with Netbeans. (i.e. the application was running with the debugger attached) At the same time I was working with IntelliJ on a Rails application.
I noticed two strange messages in the Netbeans debug output window:
Exception "java.lang.ClassNotFoundException:
com.intellij.codeInsight.editorActions.FoldingTransferableData$FoldingData"
while constructing DataFlavor for: application/x-java-jvm-local-objectref;
class=com.intellij.codeInsight.editorActions.FoldingTransferableData$FoldingData
and
Exception "java.lang.ClassNotFoundException:
com.intellij.codeInsight.editorActions.ReferenceTransferableData$ReferenceData"
while constructing DataFlavor for: application/x-java-jvm-local-objectref;
class=com.intellij.codeInsight.editorActions.ReferenceTransferableData$ReferenceData
Just out of curiosity: What was happening here?
If it matters: I'm using Netbeans 7.0.1 and IntelliJ 10.5.2 (Evaluation) with the Ruby plugin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是 IDEA 导致任何输出,而是 Netbeans。 Netbeans 正在尝试分析剪贴板的内容,其中包含由 IDEA 放入其中的序列化 Java 对象。由于 Netbeans 不知道任何 IntelliJ IDEA 类,因此它会打印此错误。
This is not IDEA causing any output but Netbeans. Netbeans is trying to analyze the contents of the clipboard which contains a serialized Java object that has been put there by IDEA. Since Netbeans does not know about any IntelliJ IDEA classes, it prints this error.
这是由 IntelliJ 放入剪贴板的序列化对象(Transferable 用于剪贴板操作),Netbeans 不知道该对象。没什么好担心的。
This is a serialized object put in the clipboard by IntelliJ (Transferable is for clipboard operations) that is unknown to Netbeans. Nothing to worry about.