Java .class 버전을 읽고 표시하는 도구
.class 파일을 검색 한 다음 컴파일 된 버전을 표시하는 도구에 대해 아는 사람이 있습니까?
16 진수 편집기에서 개별적으로 볼 수는 있지만 볼 클래스 클래스가 많이 있습니다 (내 거대한 응용 프로그램의 어떤 것이 Java6로 컴파일되고 있음).
JDK와 함께 제공 되는 javap 도구를 사용하십시오 . 이 -verbose
옵션은 클래스 파일의 버전 번호를 인쇄합니다.
> javap -verbose MyClass
Compiled from "MyClass.java"
public class MyClass
SourceFile: "MyClass.java"
minor version: 0
major version: 46
...
버전 만 표시하려면 다음을 수행하십시오.
WINDOWS> javap -verbose MyClass | find "version"
LINUX > javap -verbose MyClass | grep version
클래스 파일 서명 을 읽고 타사 API없이 이러한 값을 얻는 것이 쉽습니다 . 처음 8 바이트 만 읽으면됩니다.
ClassFile {
u4 magic;
u2 minor_version;
u2 major_version;
클래스 파일 버전 51.0 (Java 7)의 경우 시작 바이트는 다음과 같습니다.
CA FE BA BE 00 00 00 33
... 여기서 0xCAFEBABE는 매직 바이트이고 0x0000은 부 버전이고 0x0033은 주 버전입니다.
import java.io.*;
public class Demo {
public static void main(String[] args) throws IOException {
ClassLoader loader = Demo.class.getClassLoader();
try (InputStream in = loader.getResourceAsStream("Demo.class");
DataInputStream data = new DataInputStream(in)) {
if (0xCAFEBABE != data.readInt()) {
throw new IOException("invalid header");
}
int minor = data.readUnsignedShort();
int major = data.readUnsignedShort();
System.out.println(major + "." + minor);
}
}
}
Walking directories (File) and archives (JarFile) looking for class files is trivial.
Oracle's Joe Darcy's blog lists the class version to JDK version mappings up to Java 7:
Target Major.minor Hex
1.1 45.3 0x2D
1.2 46.0 0x2E
1.3 47.0 0x2F
1.4 48.0 0x30
5 (1.5) 49.0 0x31
6 (1.6) 50.0 0x32
7 (1.7) 51.0 0x33
8 (1.8) 52.0 0x34
9 53.0 0x35
On Unix-like
file /path/to/Thing.class
Will give the file type and version as well. Here is what the output looks like:
compiled Java class data, version 49.0
If you are on a unix system you could just do a
find /target-folder -name \*.class | xargs file | grep "version 50\.0"
(my version of file says "compiled Java class data, version 50.0" for java6 classes).
Yet another java version check
od -t d -j 7 -N 1 ApplicationContextProvider.class | head -1 | awk '{print "Java", $2 - 44}'
In eclipse if you don't have sources attached. Mind the first line after the attach source button.
// Compiled from CDestinoLog.java (version 1.5 : 49.0, super bit)
Maybe this helps somebody, too. Looks there is more easy way to get JAVA version used to compile/build .class. This way is useful to application/class self check on JAVA version.
I have gone through JDK library and found this useful constant: com.sun.deploy.config.BuiltInProperties.CURRENT_VERSION. I do not know since when it is in JAVA JDK.
Trying this piece of code for several version constants I get result below:
src:
System.out.println("JAVA DEV ver.: " + com.sun.deploy.config.BuiltInProperties.CURRENT_VERSION);
System.out.println("JAVA RUN v. X.Y: " + System.getProperty("java.specification.version") );
System.out.println("JAVA RUN v. W.X.Y.Z: " + com.sun.deploy.config.Config.getJavaVersion() ); //_javaVersionProperty
System.out.println("JAVA RUN full ver.: " + System.getProperty("java.runtime.version") + " (may return unknown)" );
System.out.println("JAVA RUN type: " + com.sun.deploy.config.Config.getJavaRuntimeNameProperty() );
output:
JAVA DEV ver.: 1.8.0_77
JAVA RUN v. X.Y: 1.8
JAVA RUN v. W.X.Y.Z: 1.8.0_91
JAVA RUN full ver.: 1.8.0_91-b14 (may return unknown)
JAVA RUN type: Java(TM) SE Runtime Environment
In class bytecode there is really stored constant - see red marked part of Main.call - constant stored in .class bytecode
Constant is in class used for checking if JAVA version is out of date (see How Java checks that is out of date)...
참고URL : https://stackoverflow.com/questions/27065/tool-to-read-and-display-java-class-versions
'IT박스' 카테고리의 다른 글
HTTPS / SSL을 통한 Java 클라이언트 인증서 (0) | 2020.07.25 |
---|---|
독자 모나드의 목적은 무엇입니까? (0) | 2020.07.25 |
이중 백 슬래시가있는 모든 단일 백 슬래시 (0) | 2020.07.25 |
참조 된 어셈블리 PDB 및 XML 파일이 출력으로 복사되지 않도록 방지 (0) | 2020.07.25 |
정규식 : "문자열의 공백 또는 시작"및 "문자열의 공백 또는 끝"지정 (0) | 2020.07.25 |