无法使用Eclipse在Java中进行调试
我正在尝试使用Eclipse作为IDE在计算机上调试简单的Java应用程序。当我尝试通过进入Debug
Perspective调试应用程序时,我设置了一个断点并开始调试。在几秒钟内,将出现以下弹出窗口:
Launching unicodeRead has encountered a problem. Cannot connect to VM
。
在控制台上转储的消息如下:
ERROR: transport error 202: connect failed: Connection refusedERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:708]
FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
我该如何纠正?为什么会这样?
回答:
我只是有同样的问题。
昨天一切正常,现在什么都没有了-与您给出的错误相同。我发现网络管理员在此期间进行了一些更改。一些防火墙的东西。问题是Eclipse试图在“
localhost”(和一些随机端口)建立与JVM的连接。当我尝试ping localhost(或127.0.0.1)时,得到以下信息:
C:\Windows\system32>ping 127.0.0.1Pinging 127.0.0.1 with 32 bytes of data:
PING: transmit failed. General failure.
PING: transmit failed. General failure.
PING: transmit failed. General failure.
PING: transmit failed. General failure.
和
C:\Windows\system32>ping localhostPing request could not find host localhost. Please check the name and try again.
它暗示了在某些情况下,DNS应该可以解决此问题,并且如果防火墙阻止了localhost对DNS的请求,则会中断。我不得不更改主机文件并删除以下行中的注释,因此我不再依赖DNS:
# 127.0.0.1 localhost# ::1 localhost
尽管主机文件更改立即生效,但我认为某些进程已对此进行锁定并需要重新启动。之后,一切又恢复了。
以上是 无法使用Eclipse在Java中进行调试 的全部内容, 来源链接: utcz.com/qa/410861.html