gpt4 book ai didi

java - gij (GNU libgcj) 版本

转载 作者:太空宇宙 更新时间:2023-11-04 03:51:27 25 4
gpt4 key购买 nike

祝大家有美好的一天!我写了一个简单的程序:

import java.lang.System;

public class hello{
public static void main(String[] args){
System.out.println("Hello World");
}
}

如果在本地服务器上运行它,则工作正常。但是当我像这样远程访问该程序时遇到问题:

ssh remote_machine "java hello"

我收到以下错误:

  Exception in thread "main" java.lang.NoClassDefFoundError: hello
at gnu.java.lang.MainThread.run(libgcj.so.7rh)
Caused by: java.lang.ClassNotFoundException: hello not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:./], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
at java.net.URLClassLoader.findClass(libgcj.so.7rh)
at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.7rh)
at java.lang.ClassLoader.loadClass(libgcj.so.7rh)
at java.lang.ClassLoader.loadClass(libgcj.so.7rh)
at gnu.java.lang.MainThread.run(libgcj.so.7rh)

我发现是因为jvm版本和代码编译的java版本不一致。发生不一致是因为当我创建并编译机器使用 java 1.5 的代码时,但是当我远程访问它时,它通过“gij (GNU libgcj) version 4.1.2 20080704”使用 java 1.4

问题:当我远程访问它时,是否可以绕过“gij (GNU libgcj) version 4.1.2 20080704”并使用最初使用的java版本?

最佳答案

来源1.6 Code Generation

In addition to the many gcc options controlling code generation, gcj has several options specific to itself.

  • -C This option is used to tell gcj to generate bytecode (.class files) rather than object code.

...

  • -ftarget=VERSION This can be used with -C to choose the version of bytecode emitted by gcj. The default is ‘1.5’. When not generating bytecode, this option has no effect.

因此您可以使用 -Cftarget=1.4 选项一起生成 1.4 版本的字节码

关于java - gij (GNU libgcj) 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26231314/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com