You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
URN urn2 =URN.rfc8141().parse("urn:examle:foo/1234?=cq=cz#bar");
// Access fragment part of a supposedly RFC 8141 compliant URNif (urn2.supports(RFC_8141)) {
String fragment = ((URN_8141) urn2).getRQFComponents().fragment();
}
The text was updated successfully, but these errors were encountered:
Description
I would like to have a parser for RFC 8141 URNs.
Example
We can see an example implementation on the next library:
https://github.com/slub/urnlib
The text was updated successfully, but these errors were encountered: