Netbeans を使用して Java で JApplet を作成しています。問題は、JApplet のテキストが切り取られていることです。いくつかの異なるレイアウトとサイズ変更を使用しようとしましたが、それでも同じことがわかりました。
アプレットのセットアップに使用したコードのセクションは次のとおりです。
JPanel jPanel1 = new JPanel();
jPanel1.setLayout(new FlowLayout());
jPanel1.add(new JLabel("First Name"));
jPanel1.add(jtfFname);
jPanel1.add(new JLabel("Last Name"));
jPanel1.add(jtfLname);
jPanel1.add(new JLabel("Phone No."));
jPanel1.add(jtfphoneNo);
jPanel1.add(new JLabel("Age 00/00/00"));
jPanel1.add(jtfage);
jPanel1.add(new JLabel("Email"));
jPanel1.add(jtfemail);
jPanel1.add(new JLabel("Address"));
jPanel1.add(jtfaddress);
jPanel1.add(jbtAdd);
add(jPanel1, BorderLayout.NORTH);