Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for jar (0.12 sec)

  1. src/main/java/org/codelibs/core/io/ResourceUtil.java

    import java.io.InputStream;
    import java.net.URL;
    import java.util.Properties;
    
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.exception.ResourceNotFoundRuntimeException;
    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.net.URLUtil;
    
    /**
     * リソース用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class ResourceUtil {
    
        /**
         * リソースパスを返します。
         *
         * @param path
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

                traverseFileSystem(packageDir, rootPackage, handler);
            }
        }
    
        /**
         * Jarファイルに含まれるクラスをトラバースします。
         * <p>
         * 指定されたJarファイルが拡張子<code>.war</code>を持つ場合は、 Jarファイル内のエントリのうち、 接頭辞
         * <code>WEB-INF/classes</code>で始まるパスを持つエントリがトラバースの対象となります。
         * クラスを処理するハンドラには、接頭辞を除くエントリ名が渡されます。 例えばJarファイル内に
         * <code>/WEB-INF/classes/ccc/ddd/Eee.class</code>というクラスファイルが存在すると、 ハンドラには
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/TraversalUtil.java

    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * ファイルシステム上やJarファイル中に展開されている、クラスやリソースの集まりを横断的に処理するためのユーティリティです。
     * <p>
     * 対象となるファイルシステム上のディレクトリや、Jarファイルの一などは{@link URL}によって与えられます。 URLのプロトコルに応じて適切な
     * {@link Traverser}が返されるので、そのメソッドを呼び出すことでクラスやリソースをトラバースすることが出来ます。
     * </p>
     * <p>
     * 次のプロトコルをサポートしています。
     * </p>
     * <ul>
     * <li>{@literal file}</li>
     * <li>{@literal jar}</li>
     * <li>{@literal wsjar} (WebShpere独自プロトコル、{@literal jar}の別名)</li>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  4. pom.xml

    				<artifactId>maven-compiler-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    				<executions>
    					<execution>
    						<id>source-jar</id>
    						<phase>package</phase>
    						<goals>
    							<goal>jar</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-war-plugin</artifactId>
    				<configuration>
    					<webResources>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                                        list.add(new Artifact(name, actualVersion,
                                                pluginUrl + version + "/" + name + "-" + actualVersion + ".jar"));
                                    } else if (logger.isDebugEnabled()) {
                                        logger.debug("Snapshot name is not found: {}/{}", name, version);
                                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ja.properties

    labels.plugin_list_name=プラグイン一覧
    labels.plugin_type=種別
    labels.plugin_name=名前
    labels.plugin_version=バージョン
    labels.plugin_delete=削除
    labels.plugin_install=インストール
    labels.plugin_install_title=プラグインのインストール
    labels.plugin_jar_file=Jarファイル
    labels.plugin_local_install=ローカル
    labels.plugin_remote_install=リモート
    labels.crud_button_install=インストール
    labels.storage_configuration=ストレージ
    labels.storage_name=名前
    labels.storage_size=サイズ
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  7. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

                        throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, form.jarFile.getFileName()),
                                this::asListHtml);
                    }
                    final String filename = form.jarFile.getFileName();
                    final File tempFile = ComponentUtil.getSystemHelper().createTempFile("tmp-adminplugin-", ".jar");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

    import java.io.File;
    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    
    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * リソースをトラバースするためのクラスです。
     *
     * @author taedium
     * @see ResourceHandler
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_de.properties

    labels.plugin_type=Typ
    labels.plugin_name=Name
    labels.plugin_version=Version
    labels.plugin_delete=Löschen
    labels.plugin_install=Installieren
    labels.plugin_install_title=Plugin installieren
    labels.plugin_jar_file=JAR-Datei
    labels.plugin_local_install=Lokal
    labels.plugin_remote_install=Entfernt
    labels.crud_button_install=Installieren
    labels.storage_configuration=Speicherplatz
    labels.storage_name=Name
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_fr.properties

    labels.plugin_type	=	Taper
    labels.plugin_name	=	Nom
    labels.plugin_version	=	Version
    labels.plugin_delete	=	Supprimer
    labels.plugin_install	=	Installer
    labels.plugin_install_title	=	Installer le plugin
    labels.plugin_jar_file	=	Fichier Jar
    labels.plugin_local_install	=	Local
    labels.plugin_remote_install	=	Télécommande
    labels.crud_button_install	=	Installer
    labels.storage_configuration	=	Stockage
    labels.storage_name	=	Nom
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
Back to top