We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. try this in a native image (where there is a MANIFEST.MF):
for (URL url : Collections.list(ClassLoader .getSystemResources("META-INF/MANIFEST.MF"))) { System.out.println("URL: " + url); Properties properties = new Properties(); properties.load(url.openConnection().getInputStream()); System.out.println("Properties: " + properties); System.out.println("New URL: " + new URL(url.toString())); }
It blows up on the new URL(), despite the fact that the url is readable, so the properties look fine.
new URL()
The text was updated successfully, but these errors were encountered:
[GR-14498] Enable resource URL protocol by default (#623).
resource
427e54b
PullRequest: graal/3154
Fixed in 427e54b.
Sorry, something went wrong.
cstancu
No branches or pull requests
E.g. try this in a native image (where there is a MANIFEST.MF):
It blows up on the
new URL()
, despite the fact that the url is readable, so the properties look fine.The text was updated successfully, but these errors were encountered: