与c#等效的Java
this.GetType().Namespace
获取包含该类的包名称?
答案 0 :(得分:3)
这是一个类的包:
Package myPackage = getClass().getPackage();
// or from a static context:
Package myPackage = MyClass.class.getPackage();
作为字符串:
String packageName = getClass().getPackage().getName();
// or from a static context:
String packageName = MyClass.class.getPackage().getName();