Java applets web scrap

1

I need to access one of the company pages programmatically to download a large amount of reports automatically.

The company is large and each area can have its own systems and so are not homogeneous. One of these systems is based on Java Applets and I can not do webscrap like I do on other pages.

Because this is the company's intranet, I can not put link and code here. I've looked a lot but still could not find a solution for scrap applets in Java.

Would anyone know how to access this type of content programmatically?

    
asked by anonymous 31.07.2014 / 01:49

1 answer

1

It is not possible to do web scrap from Java applets. An applet is a Java program run inside the browser. It does not generate HTML. Applets use a graphical interface, in many cases Swing .

You can try using a decompiler like Java Decompiler in the applet. This way, you can extract the necessary information.

    
01.08.2014 / 20:12