-
[비공개] 자바에서 내 IP 확인
자바에서 내 IP 확인http://stackoverflow.com/questions/901755/how-to-get-the-ip-of-the-computer-on-linux-through-javapublic static String getHostIpAddress() // throws Exception { String myIp = "UNKNOWN"; try { String hostName = InetAddress.getLocalHost().getHostName(); InetAddress addrs[] = InetAddress.getAllByName(hostName); int index = 0; for (InetAddress addr: addrs) { if(index == 0) return addr.getHostAddress(); index++; } } catch(Exception e) { e.printStackTrace(); } return myIp; }추천 -
[비공개] java get disk remain space
java get disk remain space출처 :http://stackoverflow.com/questions/1051295/how-to-find-how-much-disk-space-is-left-using-javaust look at the File class documentation. This is one of the new features in 1.6.These new methods also include:public long getTotalSpace()public long getFreeSpace()public long getUsableSpace()If your still using 1.5 then you can use theApache Commons library and it's FileSystem classPS. 하드인지 CD-ROM인지는 JDK 1.7부터 되는듯 함..public static void main(String[] args) { NumberFormat nf = NumberFormat.getInstance(); nf.setMaximumFractionDigits(2); File[] roots = File.listRoots(); for (File root : roots) { String drive = root.getAbsolutePath(); double totalSize = root.getTotalSpace() / Math.pow(1024, 3); double freeSize = root.getFreeSpace() / Math.pow(1024, 3); double useSize = root.getUsableSpace() / Math.pow(1024, 3); System.out.println("Drive : " + drive + " | 전체 용량 : " + nf.for..추천 -
[비공개] Kindle DX as E Ink computer monitor
작성일자 : 2012-11-24Kindle DX as E Ink computer monitorhttp://tinyapps.org/docs/e-ink-monitor.htmlhttp://ozahir.tistory.com/1294추천 -
[비공개] 구글 차트
구글 차트https://developers.google.com/chart/image/docs/gallery/line_chartshttps://developers.google.com/chart/image/docs/gallery/compound_chartscht=lxychs=200x125chd=t:10,20,40,80,90,95,99|20,30,40,50,60,70,80|-1|5,10,22,35,85chco=3072F3,ff0000,00aaaa줄 색깔chls=2,4,1줄 타입 - 끊어진줄, 이어진줄chm=s,000000,0,-1,5|s,000000,1,-1,5chdl=Ponies|Unicorns줄 상단 설명chdlp=t"추천 -
[비공개] [유틸추천]공포의 윈도우 블루스크린 확인방법
[유틸추천]공포의 윈도우 블루스크린 확인방법http://v.daum.net/link/29354501 http://www.thisisgame.com/board/view.php?id=1194479&board=&category=505추천 -
[비공개] 타오바오 네이버 카페
대륙 승화 : 파랑, 빨강대륙 승화 무각대륙 닌자대륙 레이저----------그라파이트크림치즈레드얼럿돌치타오바오 네이버 카페http://cafe.naver.com/ogmarket추천 -
[비공개] 키보드 커뮤니티
작성일자 : 2012-04-18출처 : 인터넷 펌아래는 여기저기서 긁어 온 기계식 키보드 관련 지식과 커뮤니티, 온라인 쇼핑몰을 정리해 보았다.기계식 키보드 커뮤니티 : KBDmania.nethttp://www.kbdmania.net/xe/체리 한국 홈페이지http://www.nrckr.com/mall/otd.kr : on the desk기계식 키보드 온라인 쇼핑몰1) 레오폴드 (체리/필코 마제스터치/FC 등)http://www.leopold.co.kr/2) 아이오매니아 (체리/필코 마제스터치/FC/덕키/타입나우 등 판매)http://www.iomania.co.kr/3) 리더스키 (리얼포스/해피해킹 등 판매)http://www.leaderskey.com/하우징 등 추가 정보는 더 찾아보는 데로 정리해추천