java获取硬盘ID以及MAC地址
http://blog.csdn.net/coolwzjcool/article/details/6698327
版权声明:本文为博主原创文章,未经博主允许不得转载。
为了达到软件注册,或者说软件和电脑绑定的目的,需要将电脑上的固定编号进行一系列的算法计算,并生成唯一和软件匹配的号码。
那么使用java如何达到这个目的呢?
通常做法都是通过java的Runtime来完成,通过 process的输入流,进行获取相关的信息。
下面列举具体的例子:
1、DiskUtils 获取硬盘编号
- 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();
- }
- }
2、MacUtils 获取MAC地址
- 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());
- }
- }
- }
3、 测试程序:
- import java.io.InputStreamReader;
- import java.io.LineNumberReader;
- import java.net.NetworkInterface;
- import java.net.SocketException;
- import java.util.Enumeration;
- import java.util.Vector;
- public class TestMain {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- //****************获取MAC地址*****************//
- System.out.println("***MAC地址***");
- MacUtils.getMac();
- //****************获取硬盘ID*****************//
- String sn = DiskUtils.getSerialNumber("C");
- System.out.println("***硬盘编号***");
- System.out.println(sn);
- }
- }
4、执行结果(我电脑上有几个VPN,所以就有多个MAC;为了防止别人搞我的电脑,数字和字母用*号代替)
***MAC地址***
MAC address = [**-**-**-**-**-**]
MAC address = [**-**-**-**-**-**]
MAC address =[**-**-**-**-**-**]
MAC address = [**-**-**-**-**-**]
***硬盘编号***
1290******
package com.sunbin.test;
import java.io.*;
import java.util.regex.*;
public class ReadMacByJava {
private String mPhysicalAddress = "";
private int mPhysicalMacNumber = 0;
private boolean isInit = false;
public void init() {
try {
String line;
String os = System.getProperty("os.name");
Process process = null;
if (os != null && os.startsWith("Windows")) {
process = Runtime.getRuntime().exec("cmd /c ipconfig /all");
} else {
process = Runtime.getRuntime().exec("ifconfig eth0");
}
BufferedReader bufferedReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
Pattern macPattern = Pattern
.compile("([0-9A-Fa-f]{2})(-[0-9A-Fa-f]{2}){5}");
Matcher macMatcher;
boolean result;
while ((line = bufferedReader.readLine()) != null) {
if ("".equals(line)) {
continue;
}
macMatcher = macPattern.matcher(line);
result = macMatcher.find();
if (result) {
mPhysicalMacNumber++;
if ("".equals(mPhysicalAddress)) {
mPhysicalAddress = macMatcher.group(0);
} else {
mPhysicalAddress += ("," + macMatcher.group(0));
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
isInit = true;
}
public String getPhysicalAddress() {
if (isInit) {
return this.mPhysicalAddress;
} else {
return "Mac is not init.";
}
}
public static void main(String[] args){
ReadMacByJava mac = new ReadMacByJava();
mac.init();
System.out.println("MAC address :"+ mac.getPhysicalAddress());
}
}
java获取硬盘ID以及MAC地址的更多相关文章
- Java获取主板序列号、MAC地址、CPU序列号工具类
import java.io.File; import java.io.FileWriter; import java.io.BufferedReader; import java.io.IOExce ...
- JAVA获取本机的MAC地址
/** * 获取本机的Mac地址 * @return */ public String getMac() { InetAddress ia; byte[] mac = null; try { // 获 ...
- java支持跨平台获取cpuid、主板id、硬盘id、mac地址 (兼容windows、Linux)
windows: package cn.net.comsys.helper.system.info; import java.io.BufferedReader; import java.io.F ...
- java 获取计算机名称, ip, mac地址
写在前面 通常所说查询本机mac地址是以以太网为准的, 也就是网线那个口..这种描述略捞. 但是通过java的getHostAddress获取ip以及getHardwareAddress()方法获取m ...
- C#获取cpu序列号 硬盘ID 网卡硬地址以及操作注册表 .
转:http://blog.csdn.net/smartsmile2012/article/details/8682295 #region 获取cpu序列号 硬盘ID 网卡硬地址 /**/ /// & ...
- java获取客户端ID地址
转:http://zhenchengchagangzi.iteye.com/blog/1199300#bc2372048 在JSP里,获取客户端的IP地址的方法是:request.getRemoteA ...
- C# 中获取CPU序列号/网卡mac地址
1.cpu序列号2.mac序列号3.硬盘id在给软件加序列号时这三个应该是最有用的,可以实现序列号和机器绑定,对保护软件很有好处.哈哈. using System; using System.Ma ...
- ASP.NET获取客户端IP及MAC地址
朋友最近问如何获取客户端IP及MAC地址,一直想把这段给整理一下,契机来了:下边分为了C#后台获取的方法和前台Javascript(调用ActiveX)获取的方法,大家如果有好的方法一起讨论撒O(∩_ ...
- 如何获取公网IP的mac地址
如何获取远程IP的mac地址 思路分析 由于java本身没有相关的jar包进行获取,所以这里介绍从其他的方面进行入手和实践 使用的工具对比: tcpdump tshark pcap4j 都可以达到抓包 ...
随机推荐
- ice调通过iceReplica用所有server instance的方法---客户端控制服务端的负载均衡
I 使用此方法,可以增量的通知Ice服务配置的改变,刷新每个服务进程的数据 可以手动控制客户端调用的负载均衡,客户端程序决定将请求发往那个进程 上代码: import logging import I ...
- string 转 int,int 转 string
string str="12345"; int b=atoi(str.c_str()); 可以配合atof,转为double char buf[10]; sprintf(buf, ...
- textarea内容太多, 鼠标点击全部显示
strRight+="<td bordercolor='#DEDEDE' width='500px' height='50'><div title='"+data ...
- 关于PHP执行超时的问题
PHP配置文件的参数max_execution_time表示脚本执行超时时间 max_execution_time=0表示不限制 max_execution_time=2表示执行两秒后终止,同时报错F ...
- 最大独立集 HDU 1068
题目大意:有n个人,两个人之间有相互的关系,问最大的关系数目. 思路:n-(最大匹配数/2).因为这里给出的是n个人之间的两两关系 //看看会不会爆int!数组会不会少了一维! //取物问题一定要小心 ...
- HDU 2063 最大匹配的基础题
中文题,题目大意不说了. 思路:就是寻找最大匹配,最大匹配就是每次找增广路,如果存在增广,那就把增广路上面的边全部都翻转即可.这样说明能多匹配一个,+1即可. //看看会不会爆int!数组会不会少了一 ...
- load
http://blog.scoutapp.com/articles/2009/07/31/understanding-load-averages http://blog.scoutapp.com/ar ...
- 获取Excel数据(或部分数据)并导出成txt文本格式
运行代码前先导入jxl架包,以下代码仅供参考: 测试excel文件(我要获取该excel的内容为省.县.乡.村.组和PH的值): ExcelTest01类代码如下: // 读取Excel的类 impo ...
- Dominating Patterns
Dominating Patterns Time Limit:3000MS Memory Limit:Unknown 64bit IO Format:%lld & %llu Descr ...
- Spring Boot 系列教程4-JDBC
JDBC Java Data Base Connectivity,是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组成.不管是Hibe ...