Notice
Recent Posts
Recent Comments
Link
목록getsimplename (1)
passion and relax
[JAVA] 21. 웹, 운영체제, 클래스 정보
운영체제 정보 추출System.getProperty("os.name");[windows와 그 외 os의 분기 예]String dotPath = "";if (System.getProperty("os.name").toLowerCase().indexOf("win") web crawlingString urlAddr = "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?id=9389682";try { URL url = new URL(urlAddr); URLConnection urlC = url.openConnection(); urlC.setUseCaches(false); urlC.connect(); BufferedReader br ..
프로그래밍
2024. 6. 7. 15:37