java :书上面程序显示是first second 而我自己的显示是输入个数错误/???????求解??
publicclassdemo4{publicstaticvoidmain(String[]args){intj=args.length;if(j!=2){System....
public class demo4
{ public static void main(String[] args)
{
int j=args.length;
if(j!=2)
{
System.out.println("输入个数错误");
System.exit(1);
}
for(int i=0;i<args.length;i++)
{
System.out.println(args[i]);
}
}
}
第二道题 编译错误帮忙看下谢谢了!!!!!!!!!!!!就是打开记事本程序
public class demo3
{ public static void main(String args[])
demo3 run=demo3.getRuntime();
try{
run.exec("notepad.exe");
}
catch(Exception e){
e.printStackTrace();
}
}
} 展开
{ public static void main(String[] args)
{
int j=args.length;
if(j!=2)
{
System.out.println("输入个数错误");
System.exit(1);
}
for(int i=0;i<args.length;i++)
{
System.out.println(args[i]);
}
}
}
第二道题 编译错误帮忙看下谢谢了!!!!!!!!!!!!就是打开记事本程序
public class demo3
{ public static void main(String args[])
demo3 run=demo3.getRuntime();
try{
run.exec("notepad.exe");
}
catch(Exception e){
e.printStackTrace();
}
}
} 展开
3个回答
展开全部
第一个问题:你如果直接用eclipse直接运行没有输入main函数的参数的话就会默认args[]为空。长度为0当然不等于2,执行if(j!=2)
{
System.out.println("输入个数错误");
System.exit(1);
}
第二个问题:
public class Demo3
{ public static void main(String args[]){
Runtime run=Runtime.getRuntime();
try{
run.exec("notepad.exe");
}
catch(Exception e){
e.printStackTrace();
}
}
}
使用Runtime.getRuntime().exec()方法可以在java程序里运行外部程序。
{
System.out.println("输入个数错误");
System.exit(1);
}
第二个问题:
public class Demo3
{ public static void main(String args[]){
Runtime run=Runtime.getRuntime();
try{
run.exec("notepad.exe");
}
catch(Exception e){
e.printStackTrace();
}
}
}
使用Runtime.getRuntime().exec()方法可以在java程序里运行外部程序。
更多追问追答
追问
可是第二问题我再cmd控制台下,不能编译还是错误的,我初学,谢谢了,麻烦
追答
不会啊,怎么不能编译咧?我可以编译运行啊,你报的错误是什么?
2015-03-12
展开全部
public class demo3{
public static void main(String args[]){
Runtime run= Runtime.getRuntime();
try{
run.exec("notepad.exe");
}catch(Exception e){
e.printStackTrace();
}
}
}
//第一个运行时候输入2个参数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好,第一题请在控制台输入:
java demo4 first second
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询