最近、ゲームに更新ログを追加しました。更新ニュースを表示するために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();
}
}