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


Java Util类代码示例

本文整理汇总了Java中com.sun.tools.internal.xjc.util.Util的典型用法代码示例。如果您正苦于以下问题:Java Util类的具体用法?Java Util怎么用?Java Util使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Util类属于com.sun.tools.internal.xjc.util包,在下文中一共展示了Util类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import com.sun.tools.internal.xjc.util.Util; //导入依赖的package包/类
public static void main(final String[] args) throws Exception {
    // use the platform default proxy if available.
    // see sun.net.spi.DefaultProxySelector for details.
    setupProxies();

    if( Util.getSystemProperty(Driver.class,"noThreadSwap")!=null )
        _main(args);    // for the ease of debugging

    // run all the work in another thread so that the -Xss option
    // will take effect when compiling a large schema. See
    // http://developer.java.sun.com/developer/bugParade/bugs/4362291.html
    final Throwable[] ex = new Throwable[1];

    Thread th = new Thread() {
        @Override
        public void run() {
            try {
                _main(args);
            } catch( Throwable e ) {
                ex[0]=e;
            }
        }
    };
    th.start();
    th.join();

    if(ex[0]!=null) {
        // re-throw
        if( ex[0] instanceof Exception )
            throw (Exception)ex[0];
        else
            throw (Error)ex[0];
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:35,代码来源:Driver.java


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