Browsing index pages (2 articles)
↧
My method to load the html from a url in a web browser does not work
I am trying to make a web browser for the fun of it, i seem to get errors when ever i put in my loadHtml method, when i comment that out everything works even the action listener. import java.awt.*;...
View ArticleAnswer by Elliott Frisch for My method to load the html from a url in a web...
Your method isn't static but you're trying to call it from a static context (main()) Also, your instances in the main() method aren't visible in the loadHtml() method. You could pass them into the...
View Article
Browsing index pages (2 articles)