我想使用Java透明JFrame。我正在使用JNA JAR和它的平台。 我试过这段代码:
WindowUtili.setWindowTransperncey(this,true);
但它会引发以下错误:Runtime Error ClassNotFound
我想知道上述错误的原因。
答案 0 :(得分:1)
您收到ClassNotFound
个异常,因为WindowUtili
不是类,该类名为WindowUtils
。
此外,您想要的方法是setWindowTransparent
,而不是setWindowTransperncey
。