问题描述
- 求类似淘宝调用阿里旺旺.exe的java实现
-
网上找了一些java调用客户端的程序的代码,这样只能调用程序本地的客户端,
Runtime rn = Runtime.getRuntime();
Process p = null;
String exeFile = "";
try{
exeFile = "D:EditPlus 2editplus.exe";
p = rn.exec(exeFile);
问题:
用户怎么能访问javaweb应用的时候,调用自己本地安装的客户端程序,比如调用qq.exe
解决方案
参考:http://ask.csdn.net/questions/11319
时间: 2024-10-30 07:21:08