由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 大侠帮忙看看这个code为什么在jdk1。5下面不能运行
相关主题
也问一个Eclipse的问题JBuilder question
help "java.lang.NoSuchMethodError"Question on J2EE container
请帮忙看看这个编译错误库里有一个函数名也叫Time
ant javac error in eclipse 3.0?javac compiler
How big is the penalty for compile with debugging mode on?com.sun.tools.javac.Main 问题
Re: 新生上路a java problem
faint, unreachable statement in javahow to compile java source code recursively in a command line?
Question about displaying Chinesetype erasure weird problem
相关话题的讨论汇总
话题: string话题: arg话题: s1话题: run话题: oracle
进入Java版参与讨论
1 (共1页)
s*******e
发帖数: 76
1
public class ReadCommand{
public static void main(String[] arg){
String s1=arg[1];
System.out.println(s1);
}
}
能COMPILE,但是一RUN就有问题,谢谢了
w*r
发帖数: 2421
2
it depends on what parameter(S) you send on command prompt
index out of range exception may happen if you only send 1 parameter

【在 s*******e 的大作中提到】
: public class ReadCommand{
: public static void main(String[] arg){
: String s1=arg[1];
: System.out.println(s1);
: }
: }
: 能COMPILE,但是一RUN就有问题,谢谢了

s*******e
发帖数: 76
3
出来的是Exception in thread main java.lang.UnsupportedClassversionError:
sdk1.4就不会,到底为什么会这样,诡异

【在 w*r 的大作中提到】
: it depends on what parameter(S) you send on command prompt
: index out of range exception may happen if you only send 1 parameter

t****5
发帖数: 20
4
apparently you compiled it with 1.5 javac,
but run it with 1.4 java.
try java -version

【在 s*******e 的大作中提到】
: 出来的是Exception in thread main java.lang.UnsupportedClassversionError:
: sdk1.4就不会,到底为什么会这样,诡异

s*******e
发帖数: 76
5
thank you so much.
I just find out I made a stupid mistake
I installed Oracle on my laptop
the default Oracle path is for its jre1.3.0.
Thank you for your help

【在 t****5 的大作中提到】
: apparently you compiled it with 1.5 javac,
: but run it with 1.4 java.
: try java -version

1 (共1页)
进入Java版参与讨论
相关主题
type erasure weird problemHow big is the penalty for compile with debugging mode on?
It's a Java BugRe: 新生上路
one java question under ubuntufaint, unreachable statement in java
String和java.lang.String有区别吗?Question about displaying Chinese
也问一个Eclipse的问题JBuilder question
help "java.lang.NoSuchMethodError"Question on J2EE container
请帮忙看看这个编译错误库里有一个函数名也叫Time
ant javac error in eclipse 3.0?javac compiler
相关话题的讨论汇总
话题: string话题: arg话题: s1话题: run话题: oracle