Replies: 1 comment 1 reply
-
|
Hello @dojdojdoj you can see example here in CobraHtmlPanel replace "Objects. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
after installing LoboEvolution in my netbeans IDE i looked for any example of how to implement it in my java code.
i can find zero examples, zero help of just simply opening a url.
the nearest i have found was this code:-
import org.lobobrowser.html.gui.;
import org.lobobrowser.html.test.;
public class BareMinimumTest {
public static void main(String[] args) throws Exception {
JFrame window = new JFrame();
HtmlPanel panel = new HtmlPanel();
window.getContentPane().add(panel);
window.setSize(600, 400);
window.setVisible(true);
new SimpleHtmlRendererContext(panel, new SimpleUserAgentContext()).navigate("http://lobobrowser.org/browser/home.jsp");
}
}
i know this is not going to work with LoboEvolution but PLEASE can someone modify this example to work with LoboEvolution version 4 (i need to use Java 11)
thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions