Do SNMP4J can get Name/Description for OIDs without load MIB?

In command line,I use net -snmp to query the oid ,it can return the name instead of oid like sysContact.0. I know that use Mibble may solve my problem but it must load the mib first.
Do SNMP4J can get Name/Description for OIDs without load MIB?

Even NET-SNMP does (need to) load MIB modules before it can resolve OIDs to object names. The same is true for SNMP4J. You can use SNMP4J-SMI-PRO instead of Mibble too. It has many MIB modules already in a compiled format and can load MIBs “as needed”.

That was the long answer, the short answer is “no, it can’t”.