当前位置: 技术问答>java相关
外部命令的问题
来源: 互联网 发布时间:2015-01-10
本文导语: 请问在vj++中如何调用外部命令?如copy , attrib ,等等 | Runtime rt = Runtime.getRuntime(); try { rt.exec("notepad"); }catch(Exception e) { e.printStackTrace(); } | Runtime rt = Runtime.getRuntime(); Stri...
请问在vj++中如何调用外部命令?如copy , attrib ,等等
|
Runtime rt = Runtime.getRuntime();
try
{
rt.exec("notepad");
}catch(Exception e)
{
e.printStackTrace();
}
try
{
rt.exec("notepad");
}catch(Exception e)
{
e.printStackTrace();
}
|
Runtime rt = Runtime.getRuntime();
String filename1 = new String("1.txt");
String filename2 = new String("2.txt");
try
{
rt.exec("copy" + filename1 + " " + filename2);
}catch(Exception e)
{
e.printStackTrace();
}
这样可完成拷贝哦,
我专门写过这方面的程序,
是可以试的,
别忘记加分给我哦
String filename1 = new String("1.txt");
String filename2 = new String("2.txt");
try
{
rt.exec("copy" + filename1 + " " + filename2);
}catch(Exception e)
{
e.printStackTrace();
}
这样可完成拷贝哦,
我专门写过这方面的程序,
是可以试的,
别忘记加分给我哦