在jframe jeditorpanel中查看日历时,背景为蓝色而不是白色。
这是我的代码:
import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
public class ShowHTMLDocument {
public static void main(String[] args) throws IOException {
JFrame f = new JFrame("Google Calendar");
final JEditorPane ep = new JEditorPane("https://www.google.com/calendar/htmlembed?src=groupboba@gmail.com&ctz=America/New_York&gsessionid=OK");
ep.setContentType("text/html");
ep.setEditable(false);
f.getContentPane().add(new JScrollPane(ep));
f.setSize(400, 300);
f.setVisible(true);
}
}
如果您运行此操作,您将看到蓝色背景,但如果您在浏览器中转到该链接,则它具有白色背景。
答案 0 :(得分:0)
似乎java jeditor不喜欢CSS,所以我放弃了:(