user2141889
user2141889

Reputation: 2305

jsp and html5 localStorage size

I have encountered an issue on which I could not find any solution. I need information about localStorage size which is calculated looking at keys stored, in my javascript function, however I need that information inside my jsp page, is there any way I could do this?

Upvotes: 0

Views: 1339

Answers (1)

Alkis Kalogeris
Alkis Kalogeris

Reputation: 17745

LocalStorage is a client/browser thing. You can't access it by java, because when jsp is running, is on the server. You'll have to send the information to the server, there is no other way.

Upvotes: 1

Related Questions