
URI::jar - Java ARchive URI

version 0.02

use URI;
use URI::jar;
my $jar_uri = URI->jar("jar:http://www.art-code.org/foo/bar.jar!/content/baz/zigorou.js");
local $\ = "\n";
print $jar_uri->jar_entry_name; # will print "/content/baz/zigorou.js"
print $jar_uri->jar_file_uri; # will print "http://www.art-code.org/foo/bar.jar"

Return entry name in jar file.
Return jar file's uri as URI object.

Toru Yamaguchi, <zigorou@cpan.org>

Please report any bugs or feature requests to bug-uri-jar@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Copyright 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.