순수 자바 CPU 시리 얼 번호 가 져 오기,기계 코드 생 성


기계 코드 생 성 에 사용
mac 를 사용 하 는 것 은 믿 을 수 없 는 것 같 습 니 다.mac 는 고 칠 수 있 기 때 문 입 니 다.
(CPU 시리 얼 번호 외 에 메인보드 시리 얼 번호 도 얻 을 수 있 습 니 다.)
 
public static void main(String[] args) {
	// TODO Auto-generated method stub
	try {
		long start = System.currentTimeMillis();
		Process process = Runtime.getRuntime().exec(
		new String[] { "wmic", "cpu", "get", "ProcessorId" });
		process.getOutputStream().close();
		Scanner sc = new Scanner(process.getInputStream());
		String property = sc.next();
		String serial = sc.next();
		System.out.println(property + ": " + serial);
		System.out.println("time:" + (System.currentTimeMillis() - start));
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}

}

 
ProcessorId: BFEBFBFF00030***
time:291
 
MD5 로 암호 화하 면 기계 코드 가 되 고 암호 화하 지 않 아 도 됩 니 다.
 
자바 MD5 암호 화 도구 클래스
http://happyqing.iteye.com/blog/1771769
 
자바 RSA 암호 화 생 성 라이선스
http://happyqing.iteye.com/blog/2083360

좋은 웹페이지 즐겨찾기