我最近刚刚在我的游戏中添加了更新日志。我正在使用 tumblr 显示更新消息。我使用了简单的代码(如下所列)来展示它,但是当我运行它时,它看起来和原来的 tumblr 完全不同!
package javaapplication32;
import javax.swing.*;
public class GetWebPage {
public static void main(String args[]) throws Exception {
JEditorPane website = new JEditorPane("http://smo-gram.tumblr.com/");
website.setEditable(false);
JFrame frame = new JFrame("Google");
frame.add(new JScrollPane(website));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.pack();
}
}