Running a JavaScript command from MATLAB to fetch a PDF file

前端 未结 3 1362
予麋鹿
予麋鹿 2020-12-19 13:40

I\'m currently writing some MATLAB code to interact with my company\'s internal reports database. So far I can access the HTML abstract page using code which looks like this

3条回答
  •  独厮守ぢ
    2020-12-19 14:04

    wb=com.mathworks.mde.webbrowser.WebBrowser.createBrowser;
    wb.executeScript('javascript:alert(''Some code from a link'')');
    desk=com.mathworks.mde.desk.MLDesktop.getInstance;
    desk.removeClient(wb);
    

提交回复
热议问题