IntelliJ 为什么/如何在 Netbeans 中引起调试输出?

发布于 2024-12-11 07:23:52 字数 858 浏览 1 评论 0原文

昨天我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

星光不落少年眉 2024-12-18 07:23:52

这不是 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.

〆凄凉。 2024-12-18 07:23:52

这是由 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文