请提出在Java中拍摄URL / HTMLFile屏幕截图的方法。
我正在尝试使用LOBO Browser并能够在jframe中打开URL,但无法在jframe中获取内容的屏幕截图。
请检查代码示例
import org.lobobrowser.gui.FramePanel;
public LoboTestFrame() throws Exception {
FramePanel framePanel = new FramePanel();
this.getContentPane().add(framePanel);
framePanel.navigate("http://en.wikipedia.org/wiki/Main_Page");
}
无法将加载的内容捕获为图像
最佳答案
是。将Desktop#browse()
(提到here)与Robot#createScreenCapture()
(图示为here和here)组合在一起。