NAME
URI::jar - Java ARchive URI
VERSION
version 0.02
SYNOPSIS
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"
METHOD
jar_entry_name()
Return entry name in jar file.
jar_file_uri()
Return jar file's uri as URI object.
AUTHOR
Toru Yamaguchi, <zigorou@cpan.org>
BUGS
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 & LICENSE
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.