|
how to set font size for a xml value
Hi All,
String inputRawXML = "<Test1>" +
"<test>A019876543210</test>"
+ "</Test1>";
org.jdom.Document inputDoc = null;
try{
inputDoc=util.createDocumentFromXmlString(inputRaw XML);
}
catch(Exception e){
e.printStackTrace();
}
//Getting the test xml value in string variable 'test1'
String test1 = inputDoc.getRootElement().getChildText("test");
Here, how can i set the font size of test1 variable?
Thanks in advance...
Thanks,
Bala_kj
|