2012-07-01 104 views
4

我是ubuntu 10.10的新手,并且正在使用它作为虚拟机。我试着安装jdk 1.7从终端运行java程序。我遵循链接中的说明:How to Install Oracle Java on Ubuntu Linux。安装完成后,我试着运行一个Hello World java程序。程序编译成功,当我做javac Hello.java。然而,当我试图运行使用java Hello程序,它并没有给终端上的任何输出,给了我下面的:在Ubuntu 10.10上安装jdk1.7.0

Unable to launch the application.

例外:

CouldNotLoadArgumentException[ Could not load file/URL specified: Hello] 
at com.sun.javaws.Main.launchApp(Unknown Source) 
at com.sun.javaws.Main.continueInSecureThread(Unknown Source) 
at com.sun.javaws.Main$1.run(Unknown Source) 
at java.lang.Thread.run(Thread.java:722)  

包装异常

java.io.FileNotFoundException: Hello (No such file or directory) 
at java.io.FileInputStream.open(Native Method) 
at java.io.FileInputStream.<init>(FileInputStream.java:138) 
at java.io.FileInputStream.<init>(FileInputStream.java:97) 
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source) 
at com.sun.javaws.Main.launchApp(Unknown Source) 
at com.sun.javaws.Main.continueInSecureThread(Unknown Source) 
at com.sun.javaws.Main$1.run(Unknown Source) 
at java.lang.Thread.run(Thread.java:722) 

此外,我试图使用java -version检查我的版本java,它给出了以下输出:

Java(TM) Web Start 10.0.0.147-fcs 
Usage: javaws [run-options] <jnlp-file>  
     javaws [control-options]   
    where run-options include:   
    -verbose   display additional output 
    -offline   run the application in offline mode 
    -system   run the application from the system cache only 
    -Xnosplash  run without showing a splash screen 
    -J<option>  supply option to the vm 
    -wait    start java process and wait for its exit  

control-options include:  
    -viewer   show the cache viewer in the java control panel 
    -clearcache  remove all non-installed applications from the cache 
    -uninstall  remove all applications from the cache 
    -uninstall <jnlp-file>    remove the application from the cache 
    -import [import-options] <jnlp-file> import the application to the cache 

import-options include:      
    -silent   import silently (with no user interface)  
    -system   import application into the system cache  
    -codebase <url> retrieve resources from the given codebase 
    -shortcut   install shortcuts as if user allowed prompt 
    -association  install associations as if user allowed prompt 

我在这里看到它使用javaws当我尝试运行程序使用java

我不明白为什么会发生这种情况或发生了什么问题。任何帮助将非常感激。我只是Ubuntu上的初学者。 在此先感谢!


编辑1 Hello.java:

public class Hello 
{ 
    public static void main(String... s) 
    { 
     System.out.println("Hello World.!!!"); 
    } 
} 
+0

你需要显示'Hello.java'。 – Starkey

+0

我现在已经提供了这个问题作为编辑。 – akaHuman

+1

奇怪,请问为什么你使用Ubuntu 10.10(相当过时)?如果从安装目录中调用java,输出是什么? – home

回答

1

您从java -version的输出为您提供javaws -version的输出。 所以这似乎是您的文件系统中的链接错误。 如果使用update-alternatives,则可以在二进制文件夹(/ usr/bin)中创建一个符号链接。 也许你在阅读教程时遇到了一些错字? 我很确定这是类似 sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jre1.7.0_05/bin/javaws" 1或类似的东西。

您可以尝试重新输入“update-alternative”命令。

0

我不知道你想在10.10 12.04是可用的。我安装了Sun/Oracle版本,并且它第一次运行。您只需下载它,解压缩并将其添加到您的路径中即可。

错误消息表明Java安装不正确。

我建议你也安装一个像IntelliJ CE这样的免费IDE。这将使编写,编译,运行和调试应用程序变得更容易。