Possible Duplicate:
Java - tell if a String is interned?
I would like to have a list of the string that have been internalized by a jvm, either because they are literal are because the method intern as been called on them. How can I generate it?
I would like to have a list of the string that have been internalized by a jvm, either because they are literal are because the method intern as been called on them. How can I generate it?
| |||||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
You can get the total size of all interned strings as:
| |||
|
feedback
|
You can't within a running program. There is no API for iterating the intern'd string pool. You could in theory do it via a debug agent. It would involve:
However, this process is going to be expensive, and is going to pollute the string pool (the permgen heap) with lots of Strings that have been interned unnecessarily. Besides, this only works when all application threads have been stopped by the debug agent, so an application can't use this approach to examine its own string pool. | |||
feedback
|