当我尝试从App GUI运行COMSOL脚本时,尝试从本地硬盘驱动器加载.STL文件时收到“ AccessControlException”。

AccessControlException: Security preference 'File system access' does not allow 'read' access to 'C:\Users\peter\STL_Examples\beam_0.STL'.


该错误由下面发布的代码中的最后一行代码触发:model.mesh(“ mpart1”)。run();

this post中,我了解到可以使用AccessController.doPriviledged(...)解决该问题。但是,当我尝试在COMSOL中导入AccessController时,收到一条错误消息,指出java.security.AccessController无法解析为变量。

import java.security.AccessController;


clearModel(model);
model.component().create("comp1", true);
model.component("comp1").geom().create("geom1", 3);
model.component("comp1").mesh().create("mesh1");
model.component("comp1").geom("geom1").create("imp1", "Import");
AccessController.doPriviledged(
                               model.component("comp1").geom("geom1").feature("imp1").set("filename", "C:\\Users\\peter\\STL_Examples\\beam_0.STL")
                               );
model.component().create("mcomp1", "MeshComponent");
model.geom().create("mgeom1", 3);
model.mesh().create("mpart1", "mgeom1");
with(model.component("comp1").geom("geom1").feature("imp1"));
  set("mesh", "mpart1");
endwith();
model.mesh("mpart1").create("imp1", "Import");
with(model.mesh("mpart1").feature("imp1"));
  set("filename", "C:\\Users\\peter\\STL_Examples\\beam_0.STL");
endwith();
with(model.component("comp1").geom("geom1").feature("imp1"));
  set("meshfilename", "");
endwith();
model.mesh("mpart1").run();


如何在COMSOL中导入标准Java库?或者,如何解决AccessControl问题?

最佳答案

我在COMSOL应用程序设置中找到了解决此问题的方法。
在“文件”菜单中,单击“首选项”,然后选择“安全性”部分。
然后将“文件系统访问:”更改为“所有文件”。java - 如何在COMSOL中导入java.security.AccessController?-LMLPHP

关于java - 如何在COMSOL中导入java.security.AccessController?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57484606/

10-12 06:24