web-dev-qa-db-ja.com

jarからjarURLだけを取得するにはどうすればよいですか:「!」を含むURLと瓶の中の特定のファイル?

実行時にjarファイルのURLを次のように取得します。

_jar:file:///C:/proj/parser/jar/parser.jar!/test.xml
_

これを次のように有効なパスに変換するにはどうすればよいですか。

_C:/proj/parser/jar/parser.jar.
_

私はすでにFile(URI)getPath()getFile()を無駄に使ってみました。

17
novice

MS-Windowsが先頭のスラッシュに腹を立てていない場合、これはそれを行う可能性があります。

    final URL jarUrl =
        new URL("jar:file:/C:/proj/parser/jar/parser.jar!/test.xml");
    final JarURLConnection connection =
        (JarURLConnection) jarUrl.openConnection();
    final URL url = connection.getJarFileURL();

    System.out.println(url.getFile());
35
starblue

あなたが望むものをあなたに与える正確な方法はわかりませんが、これはあなたを近づけるはずです:

import static org.junit.Assert.assertEquals;

import Java.net.URL;

import org.junit.Test;

public class UrlTest {

    @Test
    public void testUrl() throws Exception {
        URL jarUrl = new URL("jar:file:/C:/proj/parser/jar/parser.jar!/test.xml");
        assertEquals("jar", jarUrl.getProtocol());
        assertEquals("file:/C:/proj/parser/jar/parser.jar!/test.xml", jarUrl.getFile());
        URL fileUrl = new URL(jarUrl.getFile());
        assertEquals("file", fileUrl.getProtocol());
        assertEquals("/C:/proj/parser/jar/parser.jar!/test.xml", fileUrl.getFile());
        String[] parts = fileUrl.getFile().split("!");
        assertEquals("/C:/proj/parser/jar/parser.jar", parts[0]);
    }
}

お役に立てれば。

3
toolkit

このソリューションは、パス内のスペースを処理します。

String url = "jar:file:/C:/dir%20with%20spaces/myjar.jar!/resource";
String fileUrl = url.substring(4, url.indexOf('!'));
File file = new File(new URL(fileUrl).toURI());
String fileSystemPath = file.getPath();

または、最初にURLオブジェクトを使用します。

...
String fileUrl = url.getPath().substring(0, url.indexOf('!'));
...
1
dcstraw

これは少し「ハッキー」だと考える人もいるかもしれませんが、その場合はうまくいくので、他の提案でこれらすべてのオブジェクトを作成するよりも、見た目が良くなると確信しています。

String jarUrl = "jar:file:/C:/proj/parser/jar/parser.jar!/test.xml";

jarUrl = jarUrl.substring(jarUrl.indexOf('/')+1, jarUrl.indexOf('!'));
1
James Camfield

私はこれをしなければなりませんでした。

        URL url = clazz.getResource(clazz.getSimpleName() + ".class");
        String proto = url.getProtocol();
        boolean isJar = proto.equals("jar"); // see if it's in a jar file URL

        if(isJar)
        {
            url = new URL(url.getPath()); // this nicely strips off the leading jar: 
            proto = url.getProtocol();
        }

        if(proto.equals("file"))
        {
             if(isJar) 
                // you can truncate it at the last '!' here
        } 
        else if(proto == "http") {
            ...
1
peterk
  //This code will work on both Windows and Linux
  public String path()
  {
  URL url1 = getClass().getResource("");
  String urs=url1.toString();
  urs=urs.substring(9);
  String truepath[]=urs.split("parser.jar!");
  truepath[0]=truepath[0]+"parser.jar";
  truepath[0]=truepath[0].replaceAll("%20"," ");
  return truepath[0];
  }
0
Joyal Augustine