我正在尝试使用 Attach API 获取在我的机器上运行的所有 VM 的列表。
这是我正在使用的代码:
import java.lang.reflect.Field;
import java.util.List;
import com.sun.tools.attach.*;
public class JVMListManager
{
static String pathToAdd = "C:/Program Files/Java/jdk1.7.0_03/jre/bin/attach.dll";
public static void setLibraryPath(String path) throws Exception {
System.setProperty( "java.library.path", pathToAdd );
Field fieldSysPath = ClassLoader.class.getDeclaredField("sys_paths");
fieldSysPath.setAccessible(true);
fieldSysPath.set(null, null);
}
private void listActiveVM()
{
List<VirtualMachineDescriptor> vm = VirtualMachine.list();
int i= 1;
for(VirtualMachineDescriptor vmD : vm)
{
System.out.println(i + ". " + vmD.displayName());
i++;
}
}
public static void main(String[] args) throws Exception
{
setLibraryPath(pathToAdd);
JVMListManager jvmListManager = new JVMListManager();
jvmListManager.listActiveVM();
}
}
错误:
java.util.ServiceConfigurationError:com.sun.tools.attach.spi.AttachProvider:提供程序 sun.tools.attach.WindowsAttachProvider 无法实例化:java.lang.UnsatisfiedLinkError:java.library.path 中没有附加
请让我知道我可以使用哪些方法来解决此问题。
我也尝试过使用 System.load(pathToAdd); 我也提到了这篇博客文章,但它不起作用。:'(