本文整理汇总了Java中sun.jvm.hotspot.ui.classbrowser.HTMLGenerator类的典型用法代码示例。如果您正苦于以下问题:Java HTMLGenerator类的具体用法?Java HTMLGenerator怎么用?Java HTMLGenerator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HTMLGenerator类属于sun.jvm.hotspot.ui.classbrowser包,在下文中一共展示了HTMLGenerator类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doit
import sun.jvm.hotspot.ui.classbrowser.HTMLGenerator; //导入依赖的package包/类
public void doit(Tokens t) {
if (t.countTokens() != 0) {
usage();
} else {
ArrayList nmethods = new ArrayList();
Threads threads = VM.getVM().getThreads();
HTMLGenerator gen = new HTMLGenerator(false);
for (JavaThread thread = threads.first(); thread != null; thread = thread.next()) {
try {
for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) {
if (vf instanceof CompiledVFrame) {
NMethod c = ((CompiledVFrame)vf).getCode();
if (!nmethods.contains(c)) {
nmethods.add(c);
out.println(gen.genHTML(c));
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
示例2: doit
import sun.jvm.hotspot.ui.classbrowser.HTMLGenerator; //导入依赖的package包/类
public void doit(Tokens t) {
int tokens = t.countTokens();
if (tokens != 1) {
usage();
return;
}
String name = t.nextToken();
Address addr = null;
try {
addr = VM.getVM().getDebugger().parseAddress(name);
} catch (NumberFormatException e) {
out.println(e);
return;
}
HTMLGenerator generator = new HTMLGenerator(false);
out.println(generator.genHTML(addr));
}
示例3: printBytecodes
import sun.jvm.hotspot.ui.classbrowser.HTMLGenerator; //导入依赖的package包/类
private static void printBytecodes(String pid,
String[] instanceKlassNames) {
HotSpotAgent agent = new HotSpotAgent();
try {
agent.attach(Integer.parseInt(pid));
}
catch (DebuggerException e) {
System.out.println(e.getMessage());
System.err.println("Unable to connect to process ID: " + pid);
agent.detach();
e.printStackTrace();
}
for (String instanceKlassName : instanceKlassNames) {
InstanceKlass iKlass = SystemDictionaryHelper.findInstanceKlass(instanceKlassName);
MethodArray methods = iKlass.getMethods();
for (int i = 0; i < methods.length(); i++) {
Method m = methods.at(i);
System.out.println("Method: " + m.getName().asString() +
" in instance klass: " + instanceKlassName);
HTMLGenerator gen = new HTMLGenerator(false);
System.out.println(gen.genHTML(m));
}
}
agent.detach();
}