JAVA로 익스플로러 창 띄우기 구현
초월
2023.04.01
개발환경은 NetBeans 7.0 입니다.버튼 클릭시 인터넷 익스플로러를 띄우고 네이버(www.naver.com) 홈페이지를 화면에 표시하는 것을 구현하려 합니다.하지만 자꾸 에러가 나네요.아래 빨간색으로 나타낸 곳에서 cannot find symbol 이라는 에러가 납니다.무엇이 문제일까요?해결책은 어떻게 되나요?(import는 정상적으로 되어있습니다.)private void jButton1MouseClicked(java.awt.event.MouseEvent evt) { String s = http://www.naver.com; //주소에 대한 URL URL u = null; try { u = new URL((String)s); } catch (MalformedURLException ex) { Logger.getLogger(DesktopApplication2View.class.getName()).log(Level.SEVERE, null, ex); } // 에플릿 컨텍스트를 text에 구한다 AppletContext text = getAppletContext(); // text의 내용을 표시 text.showDocument(u); // TODO add your handling code here:}