获取类class的包名packageName

获取类的包名:String sPackageName = HelloWorld.class.getPackage().getName();

其中,HelloWorld是类名。

你可能感兴趣的:(String,Class)