如果你想把你做的.mm文件放到网站使其他人访问,你可以用freemind-browser软件包。该软件包在http://sourceforge.net/projects/freemind/下载。解开后有两个文件,分别是freemindbrowser.html和freemindbrowser.jar。把它们和要显示的freemind文件拷贝到Web服务器上,最后修改freemindbrowser.html文件,如:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <!-- This launcher works fine with Explorer (with Javascript or without) as well as with Mozilla on Windows --> <head> <title>2006年工作计划</title> #改这里 <!-- ^ Put the name of your mind map here --> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <APPLET CODE="freemind.main.FreeMindApplet.class" ARCHIVE="freemindbrowser.jar" WIDTH="100%" HEIGHT="100%"> <PARAM NAME="type" VALUE="application/x-java-applet;version=1.4"> <PARAM NAME="scriptable" VALUE="false"> <PARAM NAME="modes" VALUE="freemind.modes.browsemode.BrowseMode"> <PARAM NAME="browsemode_initial_map" VALUE="http://localhost/freemind/2006.mm"> #改这里,指向你要显示的freemind文件名 <!-- ^ Put the path to your map here --> <param NAME="initial_mode" VALUE="Browse"> <param NAME="selection_method" VALUE="selection_method_direct"> </applet> </body> </html>
在浏览器上打上http://localhost/freemiad/freemindbrowser.html即可访问你的2006.mm文件了。通过这种方式访问freemind文件,你可在浏览器中通过点击来打开和关闭层次。你也可把导出的HTML文档全部拷贝到Web服务器上,在浏览器上直接访问。