A solution is to use a SQL Query which could be executed in Microsoft SQL Server Management Studio :
use mdb
SELECT h.label, s.name, s.sw_version_label, d.install_path
FROM ca_discovered_hardware h
LEFT JOIN ca_discovered_software d ON d.asset_source_uuid=h.dis_hw_uuid
LEFT JOIN ca_software_def s ON d.sw_def_uuid=s.sw_def_uuid
WHERE (s.name like '%java%' or s.name like '%j2se%' or s.name like '%jdk%') and s.software_type_id=3
ORDER BY 1,2
<Please see attached file for image>
