码迷,mamicode.com
首页 > 其他好文 > 详细

加载类初始化

时间:2014-09-07 13:33:15      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   art   sp   on   c   ad   bs   

    private static void parseClassToLoad(XmlPullParser parser) throws Exception {
        String className = parser.nextText();
        // Attempt to load the class so that the class can get initialized
        try {
            Class.forName(className);
        }
        catch (ClassNotFoundException cnfe) {
            System.err.println("Error! A startup class specified in smack-config.xml could " +
                    "not be loaded: " + className);
        }
    }

加载类初始化

标签:io   ar   for   art   sp   on   c   ad   bs   

原文地址:http://blog.csdn.net/tw19811220/article/details/39119181

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!