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