62,621
社区成员
发帖
与我相关
我的任务
分享
package test;
public class Hello {
public static void main(String args[])
{
System.out.println("Hello word");
}
}
public static void main(String [] args){
try {
String str="Hello world !"
Runtime.getRuntime().exec("cmd /c start echo "+str);
} catch (IOException e) {
e.printStackTrace();
}
}