首页 > 解决方案 > 使用 Java 9 和更高版本替代默认包

问题描述

I have an application which calls a third party dll. The dll is written so that the calls to it include the fully qualified name of the class doing the calling. This module has worked for a number of years using versions of Java earlier than Java 9. But because of Oracles new restrictions on putting classes in the default package, it no longer works with more recent versions of Java.

How do I get around this problem?

标签: javajavapackager

解决方案


推荐阅读