- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
...
String tmp = null;
String age = null;
...
tmp = hdrInfo.getAge();
if( tmp != null )
{
age = tmp.substring( 0, tmp.length( ) - 1 );
if( !age.equals( "0" ) ) {
age = age;
} else {
age="";
}
} else {
age="";
}