大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
可以,java功能可是相当强大的。
创新互联建站-专业网站定制、快速模板网站建设、高性价比达拉特网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式达拉特网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖达拉特地区。费用合理售后完善,十余年实体公司更值得信赖。
这个是调用应用程序的代码:
Runtime
ec;
ec=Runtime.getRuntime();
ec.exec("这里是应用程序的路径或者命令");
比如:ec.exec("c:\\123.exe");
运行exe 文件
Java JDK里已经提供了调用的方法,不在累赘,代码如下。
try {
String command = "notepad";
Process child = Runtime.getRuntime().exec(command);
} catch (IOException e) {
}
这个也可以 Runtime.getRuntime().exec(wkspacePth + "/ReaderDevice.exe");
运行以下代码试试看。
public static void main(String[] args) {
Frame frame = new Frame("打开文件窗口");
frame.setLayout(new FlowLayout(FlowLayout.CENTER));
frame.setBounds(100, 200, 400, 300);
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
final TextField txtField = new TextField(50);
Button button = new Button("打开指定文件");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String path = txtField.getText();
System.out.println(path);
if (path.length() == 0) {
return;
}
try {
Runtime.getRuntime().exec("explorer.exe /n, " + path);
} catch (IOException ex) {
ex.printStackTrace();
}
}
});
frame.add(txtField);
frame.add(button);
frame.setVisible(true);
}