How to get the source code of the native C language library used in java 1.4?

I want to see the implementation of java.util.zip.CRC32. But in this class, it uses its own c libraries for the main implementation. How can I get my own source code. I see the source code java.util.zip.CRC32, but this has no real implementation.

+3
source share
2 answers

You should ask SUN, I mean Oracle about the availability of source code ...: - /

You can try the source code for Java 6 on this download page . CRC32 should not change much between Java 1.4 and 6.

+2
source

Sun Java 1.4 .

+1

Source: https://habr.com/ru/post/1730525/


All Articles