orlybg
orlybg

Reputation: 619

Play! framework fetch full page contents

I need to fetch the full contents of an URL withouth using the play! 1 WS library because of a SSL issue with that lib and the site I need to scrap.

Any ideas?

Upvotes: 1

Views: 305

Answers (1)

Codemwnci
Codemwnci

Reputation: 54924

new URL("someurl").getContent();

http://docs.oracle.com/javase/6/docs/api/java/net/URL.html#getContent()

Upvotes: 2

Related Questions