0

I'm trying to filter the String value, but it's not supported in VisualVM. How can I do that?

enter image description here

daisy
  • 22,498
  • 29
  • 129
  • 265

1 Answers1

1

You can use OQL to filter the strings. For example the following query will show strings containing 'AWT'

select s from java.lang.String s where s.toString().contains("AWT")

More information about OQL can found in this document.

Tomas Hurka
  • 6,723
  • 29
  • 38