我想在我的应用中打开一个网址,而不是在浏览器中打开网址。我该怎么做? 我想我需要一个webview.I使用netbeans桌面应用程序与jdk 6
如果需要javafx,我该如何使用它? 请给一些教程?
答案 0 :(得分:5)
为什么不使用JEditorPane
,setContentType()
和setText()
。
您可以设置内容类型,然后从URL repsonse获取HTML并设置JEditorPane
文本:
editor.setContentType( "text/html" );
editor.setText( "<html><body>Hello, world</body></html>" );
更新:
虽然有一些小问题,但这是一个小例子:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class JEditorPaneTest extends JPanel {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
final JFrame frame = new JFrame();
JEditorPane editor = new JEditorPane();
frame.getContentPane().add(editor);
editor.setContentType("text/html");
URL url = null;
try {
url = new URL("http://www.google.co.za");
} catch (MalformedURLException ex) {
Logger.getLogger(JEditorPaneTest.class.getName()).log(Level.SEVERE, null, ex);
}
BufferedReader in = null;
try {
in = new BufferedReader(new InputStreamReader(url.openStream()));
} catch (IOException ex) {
Logger.getLogger(JEditorPaneTest.class.getName()).log(Level.SEVERE, null, ex);
}
String inputLine;
StringBuffer response = new StringBuffer();
try {
while ((inputLine = in.readLine()) != null) {
response.append(inputLine).append("\n");
}
in.close();
} catch (IOException ex) {
Logger.getLogger(JEditorPaneTest.class.getName()).log(Level.SEVERE, null, ex);
}
// editor.setText("<html><body>Hello, world</body></html>");
editor.setText(response.toString());
editor.setEditable(false);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
您应该考虑使用JavaFX,尽管它有WebView
您需要的内容:http://docs.oracle.com/javafx/2/webview/WebViewSample.java.htm
在此处下载:http://www.oracle.com/technetwork/java/javafx/downloads/index.html
要设置Java FX和netbeans,请参阅此处:http://netbeans.org/kb/docs/java/javafx-setup.html
答案 1 :(得分:1)
如果您尝试将应用程序作为NetBeans平台中的模块嵌入,或者您只是将NetBeans IDE用作开发平台,那么我不太确定您的问题。所以这个答案提供了如何做到这两点的资源。
将JavaFX WebView嵌入NetBeans模块
这是一个sample project,它在NetBeans模块中嵌入了一个简单的基于JavaFX WebView的html浏览器。讨论该项目的博客文章是here。
使用WebView的独立JavaFX程序
在imageshack链接上呈现页面的示例JavaFX程序是:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class GoogleSouthAfrica extends Application {
public static void main(String[] args) { launch(args); }
@Override public void start(Stage stage) {
WebView webview = new WebView();
webview.getEngine().load("http://www.google.co.za/");
stage.setScene(new Scene(webview, 750, 450));
stage.show();
}
}
示例程序的输出是:
以下是使用NetBeans IDE的Adding HTML Content to JavaFX Applications教程的链接。