私は本当にこれを理解していません。プログラムを Eclipse で実行すると、問題なく動作します。以下に表示されます。
Eclipse から実行した場合の Chemistry プログラム
(このプログラムは学校のプロジェクト用に書かれているため、フルネームを隠すために何かをドラッグしたことに注意してください。無視してください)。すべてが表示されることに注意してください
ただし、Eclipseの外でプログラムを実行すると...
Eclipse の外部から実行した場合の Chemistry プログラム
ご覧のとおり、PaintComponent に関連するオブジェクトは表示されませんが、JText および JButton) 以外のオブジェクトはすべて表示されます。JOptionPane メッセージ ボックスも表示されます。表示されないものはすべて、表示されるものを含まない 1 つの JPanel からのものであることに注意してください。
表示されないパネルのコードは次のとおりです。
package gui;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.Image;
import java.io.File;
import javax.imageio.ImageIO;
import javax.swing.JPanel;
public class TopPane extends JPanel {
public TopPane(){
setLayout(new FlowLayout());
}
public void paintComponent(Graphics g){
try{
String filename = "logo.jpg";
Image image = ImageIO.read(new File(filename));
g.drawImage(image, 45, -10, null);
String intro = "Program by XXXXXXX XXXX\n";
String intro2 = "The purpose of this program is to make the process of creating a solution";
String intro3 = "less painful by performing the calculations for how much solute needs to be\n";
String intro4 = "added to the solvent. Miscellanious additional information will also be provided.\n";
String intro5 = "\n";
String intro6 = "Please enter infromation in the following format:\n";
String intro7 = "<volume> <molarity> <compound>\n";
String intro8 = "For example:";
String intro9 = "5mL 5M H2SO4";
g.drawString(intro, 30, 70);
g.drawString(intro2, 30, 95);
g.drawString(intro3, 30, 110);
g.drawString(intro4, 30, 125);
g.drawString(intro5, 30, 140);
g.drawString(intro6, 30, 155);
g.drawString(intro7, 30, 170);
g.drawString(intro8, 30, 195);
g.drawString(intro9, 30, 210);
}catch(Exception ex){System.out.println("Failed");}
}
}
以下は、Eclipse の外部で実行すると機能しないクラスを実行するクラスのコード サンプルです。
package gui;
import java.awt.BorderLayout;
import javax.swing.JFrame;
public class MainFrame extends JFrame{
public MainFrame(){
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setTitle("Chemistry Lab Assistant");
setSize(550, 300);
//Top Frame
TopPane topPane = new TopPane();
add(topPane);
//Input Pane
InputPane inputPane = new InputPane();
add(inputPane, BorderLayout.SOUTH);
}
}