Skip to content Skip to sidebar Skip to footer

Java Open Html In Background

I want to open from my program multiple HTMLs. I do this by desktop.browse(), but it goes to my browser after opening every HTML. Is this a method to open HTML in background? For e

Solution 1:

You can bring your application frame to front after opening html:

    mainFrame.toFront();
    mainFrame.repaint();

Post a Comment for "Java Open Html In Background"