/**打开期刊-以html的形式打开
* @param fileUrl 期刊路径
* @return
*/
public boolean getMagHtml(String fileUrl){
boolean flag=true;
File file = new File(fileUrl);
Runtime ce=Runtime.getRuntime();
try {
ce.exec("cmd /c start "+file.getAbsolutePath());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
flag=false;
}
return flag;
}