I am translating code written in C # in Java. This code uses COM objects to interact with a third-party application. I managed to process COM objects using the com4j library, but one of the methods requires that System.DBNull.value , which is a C # object, be passed to it.
How can I process it from a Java application?
source share