2010. 3. 18. 14:22
자바로 MAC address 구해보기
2010. 3. 18. 14:22 in ICT와 AI 정보
import java.io.*; public class MacAddressTest {
public static void main(String args[]) throws Exception { Process process = Runtime.getRuntime().exec("ipconfig /all");
InputStream standardOutput = process.getInputStream(), standardError = process.getErrorStream() ;
String output = ""; int c;
while ((c = standardOutput.read()) != -1) {
output = output + new Character((char)c).toString();
}
while ((c = standardError.read()) != -1)
standardOutput.close(); standardError.close();
BufferedReader br = new BufferedReader(new StringReader(output)); String line = null; while ((line = br.readLine()) != null) { if (line.trim().startsWith("Physical Address")) { String mac = line.substring(line.indexOf(":")+1, line.length()).trim();
System.out.println("MAC Address : " + mac); } } } }
'ICT와 AI 정보' 카테고리의 다른 글
`한글 2010` 요모조모 살펴보기 (1) | 2010.04.22 |
---|---|
IT에 관한 `쥐대가리` 생각수준 (0) | 2010.04.16 |
리눅스 디렉토리 구조 (0) | 2010.04.08 |
중국발 해킹 피해 (0) | 2010.03.27 |
자바(Java) 파일 입출력 스트림(File I/O Stream) (0) | 2010.03.17 |
Java로 윤년 알아보는 프로그램 (0) | 2010.03.16 |
C 언어로 만든 숫자 맞추기 일명 야구게임 (0) | 2010.03.15 |
매개변수와 리턴 값이 있는 함수, 없는 함수 (0) | 2010.03.14 |