Replacing Internal sun.font.FontDesignMetrics When Upgrading to JDK 17
When upgrading a project from JDK 1.8 to JDK 17, the following code: FontMetrics fontMetrics = FontDesignMetrics.getMetrics(font); Throws an error: cannot access class sun.font.FontDesignMetrics (in module java.desktop) because module java.desktop does not export sun.font The most common solution fo...