JDK 11 (well 9) no longer allows me to place a new class into the java.net
package (which is necessary to extend classes existing there to gain access to package-private members).
How can I achieve this?
JDK 11 (well 9) no longer allows me to place a new class into the java.net
package (which is necessary to extend classes existing there to gain access to package-private members).
How can I achieve this?
I just found that this is not possible anyway:
I’ve changed the code a little and built it under JDK 8 (digging out an ancient Debian oldstable system for this), but it then fails at runtime with JRE 8:
Turns out that it’s not permitted to access JVM “internals”. Not even for useful, and presumably permittable, extensions with a ready-made API for them.
(I’ve had the same job doing this for Android, and, with some use of reflection, it worked there… mostly… so I thought it would work even better in OpenJDK, but… evidently not.)