本文整理汇总了Java中com.thoughtworks.xstream.XStream.setupDefaultSecurity方法的典型用法代码示例。如果您正苦于以下问题:Java XStream.setupDefaultSecurity方法的具体用法?Java XStream.setupDefaultSecurity怎么用?Java XStream.setupDefaultSecurity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.thoughtworks.xstream.XStream
的用法示例。
在下文中一共展示了XStream.setupDefaultSecurity方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadArgs
import com.thoughtworks.xstream.XStream; //导入方法依赖的package包/类
private static List<ByteChameleon> loadArgs(String agentArguments) {
XStream xStream = new XStream();
Class<?>[] classes = new Class[] { ByteChameleon.class, Clazz.class, Method.class };
XStream.setupDefaultSecurity(xStream);
xStream.allowTypes(classes);
xStream.processAnnotations(ByteChameleon.class);
String[] files = agentArguments.split(",");
List<ByteChameleon> list = new ArrayList<ByteChameleon>();
for (String file : files) {
list.add((ByteChameleon) xStream.fromXML(new File(file.replace(" ", ""))));
}
return list;
}
示例2: readXml
import com.thoughtworks.xstream.XStream; //导入方法依赖的package包/类
@Test
public void readXml() {
XStream xStream = new XStream();
Class<?>[] classes = new Class[] { ByteChameleon.class, Clazz.class, Method.class };
XStream.setupDefaultSecurity(xStream);
xStream.allowTypes(classes);
xStream.processAnnotations(ByteChameleon.class);
ByteChameleon byteChameleon = (ByteChameleon) xStream
.fromXML(new File(AgentTest.class.getResource("/byte-chameleon.xml").getPath()));
String[] result = new String[6];
result[1] = "com.github.remartins.bytechameleon.Process";
result[2] = "- replace : process";
result[3] = "- replace : sum";
result[4] = "- before : sum";
result[5] = "- after : process";
String[] real = byteChameleon.toString().split("\n");
for (int i = 1; i < real.length; i++) {
assertTrue(real[i].equals(result[i]));
}
}
示例3: create
import com.thoughtworks.xstream.XStream; //导入方法依赖的package包/类
public static XStream create(Class cls){
XStream xStream = new XStream(new ThlwsXppDriver());
XStream.setupDefaultSecurity(xStream);
xStream.allowTypesByWildcard(new String[] {
"org.thlws.payment.wechat.**"
});
xStream.alias("xml",cls);
return xStream;
}
示例4: writeXml
import com.thoughtworks.xstream.XStream; //导入方法依赖的package包/类
@Test
public void writeXml() {
Method method = new Method();
method.setName("message");
method.setParams("String");
method.setType("before");
method.setCode("System.out.println(\"Hello before call !!!\");");
Clazz clazz = new Clazz();
clazz.setName("Messenger");
clazz.setMethods(new ArrayList<Method>());
clazz.getMethods().add(method);
ByteChameleon bc = new ByteChameleon();
bc.setClasses(new ArrayList<Clazz>());
bc.getClasses().add(clazz);
XStream xStream = new XStream();
Class<?>[] classes = new Class[] { ByteChameleon.class, Clazz.class, Method.class };
XStream.setupDefaultSecurity(xStream);
xStream.allowTypes(classes);
xStream.processAnnotations(ByteChameleon.class);
String result = xStream.toXML(bc).replaceAll(""", "\"");
String[] resultArray = result.split("\n");
String[] padrao = {
"<byte-chameleon>",
" <classes>",
" <class>",
" <name>Messenger</name>",
" <methods>",
" <method type=\"before\">",
" <name>message</name>",
" <params>String</params>",
" <code>System.out.println(\"Hello before call !!!\");</code>",
" </method>",
" </methods>",
" </class>",
" </classes>",
"</byte-chameleon>"
};
assertEquals(padrao.length, resultArray.length);
for (int i = 0; i < padrao.length - 1; i++) {
assertTrue("Linha " + (i + 1) + ": " + resultArray[i], resultArray[i].equals(padrao[i]));
}
}