-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
None
All sun.misc.* classes are JDK internal APIs that are not supported and should not be used. This issue documents the supported APIs that you should migrate to use.
1. sun.misc.BASE64Decoder, sun.misc.BASE64Encoder
Use java.util.Base64 @since 8 instead
2. sun.misc.Service
Use java.util.ServiceLoader @since 1.6 instead
3. sun.misc.Timer
Use java.util.Timer @since 1.3 instead.
4. sun.misc.RegexPool
Use java.util.regex @since 1.4 instead.
1. sun.misc.BASE64Decoder, sun.misc.BASE64Encoder
Use java.util.Base64 @since 8 instead
2. sun.misc.Service
Use java.util.ServiceLoader @since 1.6 instead
3. sun.misc.Timer
Use java.util.Timer @since 1.3 instead.
4. sun.misc.RegexPool
Use java.util.regex @since 1.4 instead.
- relates to
-
JDK-8037781 Remove sun.misc.Regexp* classes
- Resolved
-
JDK-6852936 Remove unused classes from sun.misc
- Closed
-
JDK-8046902 Remove sun.misc.Timer
- Closed
-
JDK-5014358 RFE: sun.misc.Service should be in the supported public API, under java. *
- Closed