I modified DiscoveryTest.java a little.
That is, instead of System.out.println(pvs); of main() function, I substitued it with
"for (ObjectIdentifier objectIdentifier : oids) {
System.out.println(pvs.getString(objectIdentifier, PropertyIdentifier.description));
}".
Of course, I added "refs.add(oid, PropertyIdentifier.description);" at addPropertyReferences() function of the DiscoveryTest.java.
But, the ouput encoding is not right at System.out, so breaked font strings are printed which is originally east asia character.
So I want to know how to change encoding settings of PropertyValues or RequestUtils.readProperties().
Any suggestions are appreciated.