Код: Выделить всё
com.sun.tools.attach.AgentLoadException: 102
at jdk.attach/sun.tools.attach.HotSpotVirtualMachine.loadAgentLibrary(HotSpotVirtualMachine.java:109)
at jdk.attach/sun.tools.attach.HotSpotVirtualMachine.loadAgentLibrary(HotSpotVirtualMachine.java:120)
at jdk.attach/sun.tools.attach.HotSpotVirtualMachine.loadAgent(HotSpotVirtualMachine.java:148)
at Main.main(Main.java:31)
Код: Выделить всё
try {
attach.loadAgent(agent.getAbsolutePath() , "1");
System.out.println("Agent was loaded.");
} catch (AgentLoadException e) {
System.err.println("Agent failed to load: ");
e.printStackTrace();
} catch (AgentInitializationException e) {
System.err.println("Agent loaded, but failed to initialize: ");
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Я получаю AgentLoadException:102
102 при поиске — ATTACH_ERROR_STARTFAIL
Любые идеи о том, как я могу решить эту проблему ?
Спасибо.
Подробнее здесь: https://stackoverflow.com/questions/725 ... -attaching
Мобильная версия