| import java.io.BufferedReader; |
| import java.io.IOException; |
| import java.io.InputStream; |
| import java.io.InputStreamReader; |
| import java.io.OutputStream; |
| public class MyTest { |
| // 后面java程序,调用我们exe程序转换dwg文件格式. |
| public static String CallMxFileConvert(String sDwgFile){ |
| // 我们转所程序路径. |
| String command = "C:/Users/MxDrawDEV/Documents/MxKd/MxDrawCloudServer/Bin/Release/MxFileConvert.exe"; |
| Runtime rn = Runtime.getRuntime(); |
| Process process = null; |
| |
| // 转换参数。 |
| String sJsonParam = "{\"srcpath\":\"" + sDwgFile + "\"}"; |
| String [] sRetJson = new String[1]; |
| |
| try { |
| // 启动一个进程序,调用转换程序。 |
| process = rn.exec(new String[]{command,sJsonParam}); |
| final InputStream ins = process.getInputStream(); |
| final InputStream errs = process.getErrorStream(); |
| //确保子进程与主进程之间inputStream不阻塞 |
| new Thread() { |
| @Override |
| public void run() { |
| BufferedReader inb = null; |
| String line = null; |
| try { |
| inb = new BufferedReader(new InputStreamReader(ins,"gbk")); |
| while ((line = inb.readLine()) != null) { |
| sRetJson[0] = line; |
| //System.out.println("executeMxExe - InputStream : " + line); |
| } |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } finally { |
| try { |
| if(null != inb) |
| inb.close(); |
| if(null != ins){ |
| ins.close(); |
| } |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
| }.start(); |
| //确保子进程与主进程之间ErrorStream不阻塞 |
| new Thread() { |
| @Override |
| public void run() { |
| BufferedReader errb = null; |
| String line = null; |
| try { |
| errb = new BufferedReader(new InputStreamReader(errs,"gbk")); |
| while ((line = errb.readLine()) != null) { |
| System.out.println("executeMxExe - ErrorStream : " + line); |
| } |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } finally { |
| try { |
| if(null!=errb) |
| errb.close(); |
| if(null != errs){ |
| errs.close(); |
| } |
| } catch (IOException e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
| }.start(); |
| int retCode = process.waitFor(); |
| } catch (Exception e) { |
| // TODO: handle exception |
| e.printStackTrace(); |
| } finally{ |
| if(null !=process ){ |
| OutputStream out = process.getOutputStream(); |
| if(null != out){ |
| try { |
| out.close(); |
| } catch (IOException e) { |
| // TODO Auto-generated catch block |
| e.printStackTrace(); |
| } |
| } |
| process.destroy(); |
| } |
| } |
| |
| // 返回转换结果。 |
| return sRetJson[0]; |
| } |
| |
| public static void main(String[] args) { |
| String sDwg = "e:/1.dwg"; |
| String sRetJson = CallMxFileConvert(sDwg); |
| System.out.println(sRetJson); |
| } |
| }; |
| |
| /* POST upload listing. */router.post('/', upload.single('file'), function (req, res, next) { |
| // 得到上传文件 |
| var file = req.file; |
| // MxFileConvert.exe在服务器的路径 |
| var pathConvertExt = '"' + __dirname + "/../../../Bin/Release/MxFileConvert.exe" + '"'; |
| // 准备调用参数,json格式,srcpath是dwg在服务器上的路径. |
| var cmdparam = '{"srcpath":"' + file.path + '"}'; |
| var cmd = pathConvertExt + " " + cmdparam; |
| const exec = child_process.exec; |
| //调用MxFileConvert.exe进程,进行文件格式转换. |
| exec(cmd, (err, stdout, stderr) => { |
| if (err) { |
| res.json('{"code": 1, "message": "exec cmd failed"}'); |
| } |
| else { |
| // 转换成功,通过命令输出json格式字符串. |
| res.json(stdout); |
| } |
| }); |
| }); |
| import Mx from "mxdraw" |
| @Options({ |
| props: { |
| msg: String |
| } |
| }) |
| export default class HelloWorld extends Vue { |
| msg!: string |
| mounted() { |
| |
| // 创建MxDraw对像,打开test.dwg图纸 |
| Mx.MxFun.createMxObject({ |
| canvasId: "mxdraw", // canvas元素的id |
| cadFile:"http://localhost:8088/demo/buf/test.dwg.mxb1.wgh", // 后端程序转换dwg文件后的文件位置。 |
| callback(mxDrawObject,{canvas,canvasParent}) { |
| |
| mxDrawObject.addEvent("loadComplete", () => { |
| console.log("mx loadComplete"); |
| }); |
| } |
| }); |
| } |
| } |
E. 设置禁用Chrome浏览器的跨域访问
| // 如下代码,禁用跨域访问安全判断 |
| "runtimeArgs": [ |
| "--disable-web-security", |
| "--user-data-dir=${workspaceRoot}\\UserDataDir", |
| ], |
| |
| 配置launch.json |
| { |
| |
| "version": "0.2.0", |
| "configurations": [ |
| { |
| "type": "chrome", |
| "request": "launch", |
| "runtimeArgs": [ |
| "--disable-web-security", |
| "--user-data-dir=${workspaceRoot}\\UserDataDir", |
| ], |
| "name": "Launch Chrome against localhost", |
| "url": "http://localhost:8080", |
| "webRoot": "${workspaceFolder}" |
| } |
| ] |
| } |