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