Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바
- decompiler
- scrollView
- WebView
- 웹뷰
- Bootstrap
- asp.net
- TextBox
- SpringSource Tool Suite
- Android
- MSsql
- Eclipse
- Redirect
- 이클립스
- C#
- Maven
- 컬럼명
- 자바스크립트
- Web Service
- 웹 서비스
- STS
- varags
- MANTIS
- html
- MS-SQL
- Apache Lucene
- Java
- javascript
- 안드로이드
- jsp
Archives
- Today
- Total
목록웹 브라우저 (1)
bboks.net™
Java에서 웹 브라우저 띄우기
import java.lang.reflect.Method; public class BrowserControl { /** * Method to Open the Broser with Given URL * * @param url */ public static void openUrl(String url) { String os = System.getProperty("os.name"); Runtime runtime = Runtime.getRuntime(); try { // Block for Windows Platform if (os.startsWith("Windows")) { String cmd = "rundll32 url.dll,FileProtocolHandler " + url; Process p = runtim..
Java/Java
2011. 6. 23. 14:01