本文整理汇总了Java中org.apache.commons.configuration.XMLConfiguration.setProperty方法的典型用法代码示例。如果您正苦于以下问题:Java XMLConfiguration.setProperty方法的具体用法?Java XMLConfiguration.setProperty怎么用?Java XMLConfiguration.setProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.configuration.XMLConfiguration
的用法示例。
在下文中一共展示了XMLConfiguration.setProperty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testAdapterXmlConfigWithDefaultDelimiter
import org.apache.commons.configuration.XMLConfiguration; //导入方法依赖的package包/类
@Test
public void testAdapterXmlConfigWithDefaultDelimiter() throws Exception {
final Settings4jRepository testSettings = createSimpleSettings4jConfig();
// start test => create adapter and add to Settings4jRepository
final XMLConfiguration configuration = addXmlConfiguration(//
testSettings, "myXmlConfigConnector", "xmlConfigWithDefaultDelimiter.xml", "/");
// configure some values
configuration.setProperty(TEST_VALUE_KEY, "Hello Windows World");
configuration.save();
// validate result
assertThat(testSettings.getSettings().getString(TEST_VALUE_KEY), is("Hello Windows World"));
assertThat(testSettings.getSettings().getString("unknown/Value"), is(nullValue()));
}
示例2: createControllersConfig
import org.apache.commons.configuration.XMLConfiguration; //导入方法依赖的package包/类
public static String createControllersConfig(HierarchicalConfiguration cfg,
HierarchicalConfiguration actualCfg,
String target, String netconfOperation,
String controllerOperation,
List<ControllerInfo> controllers) {
//cfg.getKeys().forEachRemaining(key -> System.out.println(key));
cfg.setProperty("edit-config.target", target);
cfg.setProperty("edit-config.default-operation", netconfOperation);
cfg.setProperty("edit-config.config.capable-switch.id",
parseCapableSwitchId(actualCfg));
cfg.setProperty("edit-config.config.capable-switch." +
"logical-switches.switch.id", parseSwitchId(actualCfg));
List<ConfigurationNode> newControllers = new ArrayList<>();
for (ControllerInfo ci : controllers) {
XMLConfiguration controller = new XMLConfiguration();
controller.setRoot(new HierarchicalConfiguration.Node("controller"));
String id = ci.type() + ":" + ci.ip() + ":" + ci.port();
controller.setProperty("id", id);
controller.setProperty("ip-address", ci.ip());
controller.setProperty("port", ci.port());
controller.setProperty("protocol", ci.type());
newControllers.add(controller.getRootNode());
}
cfg.addNodes("edit-config.config.capable-switch.logical-switches." +
"switch.controllers", newControllers);
XMLConfiguration editcfg = (XMLConfiguration) cfg;
StringWriter stringWriter = new StringWriter();
try {
editcfg.save(stringWriter);
} catch (ConfigurationException e) {
log.error("createControllersConfig()", e);
}
String s = stringWriter.toString()
.replaceAll("<controller>",
"<controller nc:operation=\"" + controllerOperation + "\">");
s = s.replace("<target>" + target + "</target>",
"<target><" + target + "/></target>");
return s;
}
示例3: createClientConfig
import org.apache.commons.configuration.XMLConfiguration; //导入方法依赖的package包/类
private void createClientConfig(StartFloeInfo info, String managerHost, String coordinatorHost)
throws IOException, ConfigurationException {
XMLConfiguration config = new XMLConfiguration();
config.setRootElementName("GopherConfiguration");
config.setProperty(FLOE_MANAGER, managerHost + ":" + MANAGER_PORT);
config.setProperty(FLOE_COORDINATOR, coordinatorHost + ":" + COORDINATOR_PORT);
info.getSourceInfo().sourceNodeTransport.values();
for (List<TransportInfoBase> b : info.getSourceInfo().sourceNodeTransport.values()) {
for (TransportInfoBase base : b) {
String host = base.getParams().get("hostAddress");
int dataPort = Integer.parseInt(base.getParams().get("tcpListenerPort"));
int controlPort = Integer.parseInt(base.getControlChannelInfo().getParams().
get("tcpListenerPort"));
config.setProperty(DATA_FLOW_HOST, host);
config.setProperty(DATA_FLOW_DATA_PORT, dataPort);
config.setProperty(DATA_FLOW_CONTROL_PORT, controlPort);
break;
}
break;
}
config.save(new FileWriter(CONFIG_FILE_PATH));
}