Message12173

Author alanb
Recipients alanb, amak, darjus, fwierzbicki, jeff.allen, mr, rpan, sfelts, zyasoft
Date 2018-11-04.20:01:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541361701.25.0.788709270274.issue2362@psf.upfronthosting.co.za>
In-reply-to
Content
Accessing classes in the run-time image is very easy with JDK 9 and newer. Here's a simple example that lists all resources in all modules in the run-time image. More details on this in JEP 220.

FileSystem jrtfs = FileSystems.getFileSystem(URI.create("jrt:/"));
Path top = jrtfs.getPath("/");
Files.walk(top).forEach(System.out::println);
History
Date User Action Args
2018-11-04 20:01:41alanbsetmessageid: <1541361701.25.0.788709270274.issue2362@psf.upfronthosting.co.za>
2018-11-04 20:01:41alanbsetrecipients: + alanb, fwierzbicki, amak, zyasoft, jeff.allen, darjus, rpan, sfelts, mr
2018-11-04 20:01:41alanblinkissue2362 messages
2018-11-04 20:01:40alanbcreate