这个问题在这里已经有答案了:
使用蓝色背景的浏览器(4个答案)
上个月关门了。
我正在尝试使用swing创建web浏览器的克隆。我用过jeditorpane,但由于某些原因背景色总是蓝色的。这就是我所做的
JEditorPane editor = new JEditorPane();
editor.setEditable(false);
editor.addHyperlinkListener(this);
editor.setBackground(Color.WHITE);
try{
editor.setPage("https://www.google.com");
}catch(Exception e){}
和
这就是我得到的结果
我不想使用javafx,有没有办法只用swing来解决这个问题?
1条答案
按热度按时间ioekq8ef1#
@库纳尔,试着把颜色从白色改成别的颜色