Reputation: 71
Which data type should be used to store an HTML page in JAVA?
Upvotes: 0
Views: 1817
Reputation: 25370
Recommendation: Store the page in a (Jsoup) Document.
pros:
see: http://jsoup.org/
But some more informations about what you want to do would be helpful ...
Upvotes: 1
Reputation: 351
Without knowing what you will do with it, I'd suggest a
java.lang.String
because that's what it actually is. A character string.
Upvotes: 0