我需要将一个url加载到一个jeditorpane中,然后从jeditorpane中获取一个bufferedimge,下面的代码将得到一个空白/黑色图像:
import java.awt.*;
import java.awt.image.*;
import javax.imageio.*;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.text.html.*;
import java.io.*;
public class Html_Browser
{
public static void main(String[] args)
{
Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
JEditorPane editorPane=new JEditorPane();
editorPane.setEditorKit(new HTMLEditorKit());
editorPane.setEditable(false);
try
{
editorPane.setPage("https://news.yahoo.com/");
Thread.sleep(3000);
BufferedImage saveimg=new BufferedImage((int)screenSize.getWidth(),(int)screenSize.getHeight()-36,BufferedImage.TYPE_INT_RGB);
Graphics2D g2=saveimg.createGraphics();
editorPane.paint(g2);
ImageIO.write(saveimg,"png",new File("test.png"));
}
catch (Exception e)
{
editorPane.setContentType("text/html");
editorPane.setText("<html>Connection issues!</html>");
}
JFrame frame=new JFrame();
frame.getContentPane().add(editorPane);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setBounds(0,0,(int)screenSize.getWidth(),(int)screenSize.getHeight()-36);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
我加了3秒的延迟,但没用,怎么办?
2条答案
按热度按时间axzmvihb1#
你也许可以使用这种方法。
它修改编辑器窗格以同步读取所有文件。然后是
PropertyChanngeEvent
在i/o完成时生成。注意:上面的代码使用屏幕图像便利类。您可以将其替换为创建和编写BuffereImage的唯一代码。
vs91vp4v2#
您试图在呈现gui(包括组件)之前绘制一个组件,但这行不通。建议包括:
使用在swing事件线程上加载gui
SwingUtilities.invokeLater()
使用swingworker在后台线程中加载任何web数据。或者在创建swing gui之前在主线程中获取web页面,然后将其传递到swing gui。仅在加载网页并呈现gui(使其可见)后创建图像
除掉所有的
Thread.sleep
电话。这些不是您的朋友,只会阻碍swing gui的呈现。例如: