jeffjeff 发表于 2007-12-17 09:31

GUI界面无法加载 html 文件的问题

我在gui界面里想设置一个help键。自己用文本文档写了个使用说明,然后将其另存为help.html。双击能够在ie浏览器上显示。但是我在matlab的gui界面里,在那个help键的callback中写的 web(['file:///' which('HELP.html')]);
当点击这个按钮时,系统提示错误,无法找到这个文件。这是为什么?

[ 本帖最后由 eight 于 2007-12-17 21:16 编辑 ]

花如月 发表于 2007-12-17 11:22

web(['file:///' which('foo.html')])opens foo.html if the file is on the MATLAB path or in the current directory.

[ 本帖最后由 花如月 于 2007-12-17 11:28 编辑 ]

jeffjeff 发表于 2007-12-17 16:44

原帖由 花如月 于 2007-12-17 11:22 发表 http://www.chinavib.com/forum/images/common/back.gif
web(['file:///' which('foo.html')])opens foo.html if the file is on the MATLAB path or in the current directory.
但是如图中所示,此文件HELP.html正是在current directory中啊!

jeffjeff 发表于 2007-12-17 16:57

我明白了,可能是我的路径里有中文,matlab不认。再问个问题,如何将文件中输入的中文编译为matlab认识代码呢!调用出来后还能显示中文呢?

jeffjeff 发表于 2007-12-17 17:30

我还想问个问题,我现在已经能够打开这个html文件了。但是我将我的gui生成为exe文件后却打不开了,它只能将ie浏览器打开,并打开主页。但是无法打开我的这个help.html文件。这是为什么?

sugarcane 发表于 2007-12-18 18:00

try this mex file created by Scie
http://www.simwe.com/forum/viewthread.php?tid=168855
mex函数启动外部程序或打开外部文件
页: [1]
查看完整版本: GUI界面无法加载 html 文件的问题