当前位置: 首页>>代码示例>>Java>>正文


Java HTMLGenerator类代码示例

本文整理汇总了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();
            }
        }
    }
}
 
开发者ID:infobip,项目名称:infobip-open-jdk-8,代码行数:25,代码来源:CommandProcessor.java

示例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));
}
 
开发者ID:arodchen,项目名称:MaxSim,代码行数:19,代码来源:CommandProcessor.java

示例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();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:28,代码来源:TestCpoolForInvokeDynamic.java


注:本文中的sun.jvm.hotspot.ui.classbrowser.HTMLGenerator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。