要清楚,通过可执行文件我并不意味着为处理器准备好文字字节。例如,当一个shebang被添加到顶部时,一个被解释且不可执行的bash脚本变为可执行文件,指定该脚本应该由/bin/bash
或/bin/sh
或任何程序解释它来运行。
我想知道是否可以使用Java,这在技术上不是脚本语言,但绝对不可执行。看起来Java很难,因为用户实际上没有机会在编译文件中添加shebang,而编译后的java也不能来自stdin。
答案 0 :(得分:3)
你当然可以创建一个文件:
#!/any/executable/program args
...input goes here...
你可以用Java
来做#!/path/bin/java mainclass
...this is System.in...
答案 1 :(得分:3)
您可以选择以下几种方式,而不是编写大量代码让Java以源代码形式执行。
使用Scala!你知道Scala是用Java构建的吗?它有一个解释器和编译器。您可以运行脚本,shell或编译并运行它。 Scala和Java无缝地协同工作。两者都编译为相同的字节码并在JVM上运行。是的,这种语言会让人觉得奇怪,因为Scala就像Java,R和Python之间的交叉,但大多数核心语言都没有改变,所有的Java软件包都可用。试试Scala吧。如果你在Linux上,你也可以看看Spark,即使对于一台机器也是如此。
如果你坚持只使用Java,你可以创建一个混合程序来做两件事(我以前做过这个):编译代码并运行它。可执行文件甚至是bash脚本都可以完成获取源文件并使其可执行的工作。如果您正在寻找Java shell,那么您需要创建一个动态运行时编译器/加载器,但您只需要使用Java / Oracle已经提供给我们的内容。想象一下,从我放置print语句的文件中插入Java语法。只要它编译,你可以在那里拥有任何你想要的东西。见这个例子:
package util.injection;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import javax.tools.Diagnostic;
import javax.tools.DiagnosticCollector;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.ToolProvider;
public class Compiler {
static final long t0 = System.currentTimeMillis();
public static void main(String[] args) {
StringBuilder sb = new StringBuilder(64);
String packageName = "util";
String className = "HelloWorld";
sb.append("package util;\n");
sb.append("public class HelloWorld extends " + Function.class.getName() + " {\n");
sb.append(" public void test() {\n");
sb.append(" System.out.println(\"Hello from dynamic function!\");\n");
sb.append(" }\n");
sb.append("}\n");
String code = sb.toString();
String jarLibraryFile = "target/myprojectname.jar";
Function dynFunction = code2class(packageName, className, code, jarLibraryFile);
dynFunction.test();
}
public static Function code2class(String packageName, String className, String code, String jarLibraryFile) {
String wholeClassName = packageName.replace("/", ".") + "." + className;
String fileName = wholeClassName.replace(".", "/") + ".java";//"testcompile/HelloWorld.java";
File javaCodeFile = new File(fileName);
string2file(javaCodeFile, code);
Function dynFunction = null;
try {
boolean success = compile(jarLibraryFile, javaCodeFile);
/**
* Load and execute
* ************************************************************************************************
*/
System.out.println("Running... " + (System.currentTimeMillis() - t0) + " ms");
Object obj = load(wholeClassName);
// Santity check
if (obj instanceof Function) {
dynFunction = (Function) obj;
// Run it
//Edit: call dynFunction.test(); to see something
}
System.out.println("Finished... " + (System.currentTimeMillis() - t0) + " ms");
} catch (IOException | ClassNotFoundException | InstantiationException | IllegalAccessException exp) {
exp.printStackTrace();
}
return dynFunction;
}
public static boolean compile(String jarLibraryFile, File javaCodeFile) throws IOException {
/**
* Compilation Requirements
* ********************************************************************************************
*/
System.out.println("Compiling... " + (System.currentTimeMillis() - t0) + " ms");
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<>();
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(diagnostics, null, null);
// This sets up the class path that the compiler will use.
// I've added the .jar file that contains the DoStuff interface within in it...
List<String> optionList = new ArrayList<>(2);
optionList.add("-classpath");
optionList.add(System.getProperty("java.class.path") + ";" + jarLibraryFile);
Iterable<? extends JavaFileObject> compilationUnit
= fileManager.getJavaFileObjectsFromFiles(Arrays.asList(javaCodeFile));
JavaCompiler.CompilationTask task = compiler.getTask(
null,
fileManager,
diagnostics,
optionList,
null,
compilationUnit);
fileManager.close();
/**
* *******************************************************************************************
* Compilation Requirements *
*/
if (task.call()) {
return true;
/**
* ***********************************************************************************************
* Load and execute *
*/
} else {
for (Diagnostic<? extends JavaFileObject> diagnostic : diagnostics.getDiagnostics()) {
System.out.format("Error on line %d in %s%n",
diagnostic.getLineNumber(),
diagnostic.getSource().toUri());
System.out.printf("Code = %s\nMessage = %s\n", diagnostic.getCode(), diagnostic.getMessage(Locale.US));
}
}
return false;
}
public static void string2file(File outputFile, String code) {
if (outputFile.getParentFile().exists() || outputFile.getParentFile().mkdirs()) {
try {
Writer writer = null;
try {
writer = new FileWriter(outputFile);
writer.write(code);
writer.flush();
} finally {
try {
writer.close();
} catch (Exception e) {
}
}
} catch (IOException exp) {
exp.printStackTrace();
}
}
}
public static Object load(String wholeClassName) throws IllegalAccessException, InstantiationException, ClassNotFoundException, MalformedURLException {
// Create a new custom class loader, pointing to the directory that contains the compiled
// classes, this should point to the top of the package structure!
URLClassLoader classLoader = new URLClassLoader(new URL[]{new File("./").toURI().toURL()});
// Load the class from the classloader by name....
Class<?> loadedClass = classLoader.loadClass(wholeClassName);
// Create a new instance...
Object obj = loadedClass.newInstance();
return obj;
}
}
...
package util.injection;
public class Function {
private static final long serialVersionUID = 7526472295622776147L;
public void test() {
System.out.println("Hello from original Function!");
}
public int getID() {
return -1;
}
public void apply(float[] img, int x, int y) {
}
public double dot(double[] x, double[] y) {
return 0;
}
}
答案 2 :(得分:2)
没有。不可能将任何脚本放在任何脚本上,它就会执行。 Bash依赖于shebang文件忽略以#
开头的行的事实。因此,任何可以忽略shebang第一行的脚本语言或字节代码都可以工作。
如果您的语言不支持#作为评论或忽略第一行需要通过另一种忽略该语言的脚本语言。
话虽如此,你可以使用bash脚本,这些脚本具有可以调用的内联二进制blob。游戏安装人员会这样做。
答案 3 :(得分:1)
自JDK11起,您可以直接使用源代码进行操作:
#!/usr/lib/jvm/jdk-11/bin/java --source 8
public class Oneliner {
public static void main(String[] args){
System.out.println("ok");
}
}
请注意,如果文件扩展名不是--source
,则.java
参数是必需的。支持值6-11,但将6标记为已弃用。
答案 4 :(得分:0)
两年半后,我偶然发现了比2016年更完整的答案。可以将Java二进制文件嵌入可执行文件中,这与John Hascall的回答相反。 {{3} }解释了This article在Linux和Unix之类的系统中如何做到这一点。
我将简要介绍该过程。
给出一个名为any_java_executable.jar
的可执行jar
给出,您要创建一个名为my_executable
的可执行文件
给出一个名为basis.sh
的脚本文件,其中包含以下内容
#!/bin/sh
MYSELF=`which "$0" 2>/dev/null`
[ $? -gt 0 -a -f "$0" ] && MYSELF="./$0"
java=java
if test -n "$JAVA_HOME"; then
java="$JAVA_HOME/bin/java"
fi
exec "$java" $java_args -jar $MYSELF "$@"
exit 1
可以通过运行以下两个命令来创建本机可执行文件。
cat basis.sh any_java_executable.jar > my_executable;
chmod +x my_executable;
然后my_executable
是一个本机可执行文件,能够运行Java程序而无需依赖jar文件的位置。可以通过运行来执行
./my_executable [arg1 [arg2 [arg3...]]]
,如果放在/usr/local/bin
中,则可以在任何地方用作CLI工具。