JInternalFrame无法在desktopPane里面显出来,
Author_JInternalFrame author_jInternalFrame = new Author_JInternalFrame();
desktopPane.add(author_jInternalFrame);
但是如果把desktopPane去掉就可以显示出来
Author_JInternalFrame author_jInternalFrame = new Author_JInternalFrame();
add(author_jInternalFrame);
可能被遮挡住了。
方便的话,发一下你的代码,帮你看看。