⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class-path.sh

📁 是一款用JAVA 编写的编译器 具有很强的编译功能
💻 SH
字号:
#!/bin/sh## Copyright 2003-2005 Sun Microsystems, Inc.  All Rights Reserved.# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.## This code is free software; you can redistribute it and/or modify it# under the terms of the GNU General Public License version 2 only, as# published by the Free Software Foundation.## This code is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License# version 2 for more details (a copy is included in the LICENSE file that# accompanied this code).## You should have received a copy of the GNU General Public License version# 2 along with this work; if not, write to the Free Software Foundation,# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.## Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,# CA 95054 USA or visit www.sun.com if you need additional information or# have any questions.## @test @(#)Class-Path.sh	1.3 03/10/31# @bug 4212732# @summary Test handling of the Class-Path attribute in jar file manifests# @author Martin Buchholz## @run shell Class-Path.sh# To run this test manually, simply do ./Class-Path.sh. ${TESTSRC-.}/Util.shset -uCleanup() {    Sys rm -rf pkg Main.java Main.class Main.jar jars    Sys rm -rf MANIFEST.MF A.jar B.zip}CleanupSys mkdir pkg#----------------------------------------------------------------# Create mutually referential jar files#----------------------------------------------------------------cat >pkg/A.java <<EOFpackage pkg;import pkg.B;public class A {    public static int f() { return B.g(); }    public static int g() { return 0; }}EOFcat >pkg/B.java <<EOFpackage pkg;import pkg.A;public class B {    public static int f() { return A.g(); }    public static int g() { return 0; }}EOFSys "$javac" ${TESTTOOLVMOPTS} pkg/A.java pkg/B.javaMkManifestWithClassPath "B.zip"Sys "$jar" cmf MANIFEST.MF A.jar pkg/A.classMkManifestWithClassPath "A.jar"Sys "$jar" cmf MANIFEST.MF B.zip pkg/B.classcat >Main.java <<EOFimport pkg.*;public class Main {    public static void main(String []a) { System.exit(A.f() + B.f()); }}EOFSuccess "$javac" ${TESTTOOLVMOPTS} -cp "A.jar" Main.javaSuccess "$javac" ${TESTTOOLVMOPTS} -cp "B.zip" Main.javaSuccess "$java" ${TESTVMOPTS}  -cp "A.jar${PS}." MainSuccess "$java" ${TESTVMOPTS}  -cp "B.zip${PS}." Main#----------------------------------------------------------------# Jar file Class-Path expanded only for jars found on user class path#----------------------------------------------------------------Sys mkdir jarsSys mv A.jar B.zip jars/.Success "$javac" ${TESTTOOLVMOPTS} -cp "jars/A.jar"       Main.javaSuccess "$java" ${TESTVMOPTS}  -cp "jars/A.jar${PS}." MainSuccess "$javac" ${TESTTOOLVMOPTS} -cp "jars/B.zip"       Main.javaSuccess "$java" ${TESTVMOPTS}  -cp "jars/B.zip${PS}." MainSuccess "$javac" ${TESTTOOLVMOPTS} -extdirs "jars"        -cp None Main.javaSuccess "$javac" ${TESTTOOLVMOPTS} -Djava.ext.dirs="jars" -cp None Main.javaSuccess "$java" ${TESTVMOPTS}  -Djava.ext.dirs="jars" -cp .    MainSuccess "$javac" ${TESTTOOLVMOPTS} -endorseddirs "jars"        -cp None Main.javaSuccess "$javac" ${TESTTOOLVMOPTS} -Djava.endorsed.dirs="jars" -cp None Main.javaSuccess "$java" ${TESTVMOPTS}  -Djava.endorsed.dirs="jars" -cp .    MainFailure "$java" ${TESTVMOPTS}  -Xbootclasspath/p:"jars/A.jar" -cp .    MainFailure "$java" ${TESTVMOPTS}  -Xbootclasspath/a:"jars/B.zip" -cp .    MainFailure "$javac" ${TESTTOOLVMOPTS} -Xbootclasspath/p:"jars/A.jar" -cp None Main.javaFailure "$javac" ${TESTTOOLVMOPTS} -Xbootclasspath/a:"jars/B.zip" -cp None Main.javaSys mv jars/A.jar jars/B.zip .MkManifestWithClassPath "A.jar"echo "Main-Class: Main" >> MANIFEST.MFSys "$jar" cmf MANIFEST.MF Main.jar Main.classSuccess "$java" ${TESTVMOPTS} -jar Main.jarMkManifestWithClassPath "."Sys "$jar" cmf MANIFEST.MF A.jar pkg/A.classSuccess "$javac" ${TESTTOOLVMOPTS} -cp "A.jar" Main.javaSuccess "$java" ${TESTVMOPTS} -jar Main.jarMkManifestWithClassPath ""Sys "$jar" cmf MANIFEST.MF A.jar pkg/A.classFailure "$javac" ${TESTTOOLVMOPTS} -cp "A.jar" Main.javaFailure "$java" ${TESTVMOPTS} -jar Main.jar#----------------------------------------------------------------# Test new flag -e (application entry point)#----------------------------------------------------------------cat > Hello.java <<EOFimport pkg.*;public class Hello {    public static void main(String []a) { System.out.println("Hello World!"); }}EOFcat > Bye.java <<EOFimport pkg.*;public class Bye {    public static void main(String []a) { System.out.println("Good Bye!"); }}EOFSuccess "$javac" ${TESTTOOLVMOPTS} Hello.java Bye.java# test jar creation without manifest#Success "$jar" cfe "Hello.jar" "Hello" Hello.classSuccess "$java" ${TESTVMOPTS} -jar Hello.jar# test for overriding the manifest during jar creation#echo "Main-Class: Hello" >> MANIFEST.MF# test for error: " 'e' flag and manifest with the 'Main-Class' # attribute cannot be specified together, during creationFailure "$jar" cmfe  MANIFEST.MF "Bye.jar" "Bye" Bye.class# test for overriding the manifest when updating the jar#Success "$jar" cfe "greetings.jar" "Hello" Hello.classSuccess "$jar" ufe "greetings.jar" "Bye" Bye.classSuccess "$java" ${TESTVMOPTS} -jar greetings.jar# test for error: " 'e' flag and manifest with the 'Main-Class'# attribute cannot be specified together, during updateFailure "$jar" umfe  MANIFEST.MF "greetings.jar" "Hello"# test jar updation when there are no inputfiles #Success "$jar" ufe "Hello.jar" "Bye"Failure "$java" ${TESTVMOPTS} -jar Hello.jarSuccess "$jar" umf  MANIFEST.MF "Hello.jar"# test creating jar when the to-be-archived files# do not contain the specified main class, there is no check done# for the presence of the main class, so the test will pass#Success "$jar" cfe "Hello.jar" "Hello" Bye.class# Jar creation and update when there is no manifest and inputfilesspecifiedFailure "$jar" cvf "A.jar"Failure "$jar" uvf "A.jar"# error: no such file or directoryFailure "$jar" cvf "A.jar" non-existing.fileFailure "$jar" uvf "A.jar" non-existing.fileCleanupBottom Line

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -