当前位置: 技术问答>java相关
使用Runtime.exec("calc.exe")时,编译 出现错误,看不懂这个错误,怎么回事?
来源: 互联网 发布时间:2015-07-13
本文导语: mytest.java:32: 在静态上下文中不能引用非静态方法 exec(java.lang.String Runtime.exec("calc.exe"); | Runtime.getRuntime().exec(); | Runtime.getRuntime.exec(); | exec is not a static ...
mytest.java:32: 在静态上下文中不能引用非静态方法 exec(java.lang.String
Runtime.exec("calc.exe");
Runtime.exec("calc.exe");
|
Runtime.getRuntime().exec();
|
Runtime.getRuntime.exec();
|
exec is not a static function, so you cannot call Runtime.exec. Runtime.getRuntime() return an instance, It is equelent to
Runtime rt = Runtime.getRuntime();
rt.exec(...);
Runtime rt = Runtime.getRuntime();
rt.exec(...);
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。