gpt4 book ai didi

java - 使用 JFrame 显示 Google map

转载 作者:行者123 更新时间:2023-12-01 17:18:41 26 4
gpt4 key购买 nike

如何使用 JFrame 显示 Google map ?这段代码有什么错误?它没有显示正确的位置。

import javax.swing.*;
import javax.swing.event.*;
import java.io.*;

public class hyperlink extends JFrame {

public static void main(String arg[])throws Exception {
new hyperlink();
}

public hyperlink() throws Exception {
String s = "https://maps.google.com/maps?z=10&q=36.26577+-92.54324";
JEditorPane pane = new JEditorPane(s);
pane.setEditable(false);
final JEditorPane finalpane = pane;
pane.addHyperlinkListener(new HyperlinkListener() {
public void hyperlinkUpdate(HyperlinkEvent r) {
try {
if(r.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
finalpane.setPage(r.getURL());
} catch(Exception e) {}
}
});
setContentPane(new JScrollPane(pane));
setSize(1000,1000);
setVisible(true);
}
}

最佳答案

JEditorPane 从未打算成为通用浏览组件。您可以尝试基于 Java-FX 的 WebView,但我不确定这是否更好。

关于java - 使用 JFrame 显示 Google map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20326647/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com