1

如何访问Netbeans的资源编辑器文件?/如何在Netbeans中导入和打开资源编辑器文件?详细说明。

4

1 回答 1

2

好的,要从代码中打开 .res 文件,您需要使用以下行:

try{
    Resources.open("/myResFile.res");
catch(IOException ioe){
    //manage the exception
}

.res 文件的路径会有所不同,在我的示例中就像在 src 文件夹中一样。

于 2012-07-15T11:30:47.560 回答