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 |
Tags
- 컬럼명
- 자바스크립트
- SpringSource Tool Suite
- Apache Lucene
- jsp
- javascript
- scrollView
- TextBox
- 안드로이드
- Bootstrap
- asp.net
- Web Service
- 자바
- Redirect
- varags
- WebView
- 이클립스
- Eclipse
- 웹 서비스
- STS
- Android
- decompiler
- MANTIS
- MS-SQL
- html
- Java
- C#
- MSsql
- Maven
- 웹뷰
Archives
- Today
- Total
목록Web Browser (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