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