`

java获取硬盘ID以及MAC地址

阅读更多
import java.io.File;
import java.io.FileWriter;
import java.io.BufferedReader;
import java.io.InputStreamReader;

class DiskUtils {
	private DiskUtils() {
	}

	public static String getSerialNumber(String drive) {
		String result = "";
		try {
			File file = File.createTempFile("damn", ".vbs");
			file.deleteOnExit();
			FileWriter fw = new java.io.FileWriter(file);
			String vbs = "Set objFSO = CreateObject(\"Scripting.FileSystemObject\")\n"
					+ "Set colDrives = objFSO.Drives\n"
					+ "Set objDrive = colDrives.item(\""
					+ drive
					+ "\")\n"
					+ "Wscript.Echo objDrive.SerialNumber"; // see note
			fw.write(vbs);
			fw.close();
			Process p = Runtime.getRuntime().exec(
					"cscript //NoLogo " + file.getPath());
			BufferedReader input = new BufferedReader(new InputStreamReader(
					p.getInputStream()));
			String line;
			while ((line = input.readLine()) != null) {
				result += line;

			}
			input.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
		return result.trim();
	}
}

MacUtils

import java.io.InputStreamReader;
import java.io.LineNumberReader;


public class MacUtils {

	public static void  getMac(){
	try {

		Process process = Runtime.getRuntime().exec("ipconfig /all");

		InputStreamReader ir = new InputStreamReader(process.getInputStream());

		LineNumberReader input = new LineNumberReader(ir);

		String line;

		while ((line = input.readLine()) != null)
			

		if (line.indexOf("Physical Address") > 0) {

			String MACAddr = line.substring(line.indexOf("-") - 2);

			System.out.println("MAC address = [" + MACAddr + "]");

		}

		} catch (java.io.IOException e) {

			System.err.println("IOException " + e.getMessage());

		}
	}
}

 

转:http://blog.csdn.net/coolwzjcool/article/details/6698327

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics