Reputation: 2305
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
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