Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回给定组件的属性集名称列表。
Iterator ServerContext.getPropertySetNames(String component)
component 要列出其属性名称的组件的名称。
给定组件的属性集名称列表。
这些属性存储在 [ml_property] 系统表中。有关详细信息,请参见ml_add_property 系统过程。
以下示例说明如何列出与给定组件相关联的 [ServerContext] 实例的所有属性:
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getPropertySetNames("Component Name"); prop.list(out);