revalidate()
や などを使用してみましrepaint()
たが、常にコンパイルに失敗します。どこかで何らかの間違いを犯していることは知っていますが、どこでどのように間違えているのかわかりません。私はこのボタンからすべてのボタンを取り除き、最初からやり直すことにしました。似たようなものが他にもたくさんあることは知っていますが、私が収集できるものからほとんどオーダーメイドされているため、彼らが使用しているものに移行するのは非常に難しいと感じていました. どんな助けでも大歓迎です。
//import java libraries
import java.awt.*;
import javax.swing.*;
public class Emotion extends JFrame
{
private JLabel label;
private JLabel phrasem;
public Emotion()
{
setLayout( new FlowLayout());
//Wordlists
String[] wordlist =
{
"Anger","Misery","Sadness","Happiness","Joy","Fear","Anticipation","Surprise","Shame","Envy","Indignation","Courage","Pride","Love","Confusion","Hope","Respect","Caution","Pain","Rage Melon"
};
//number of words the list
int length = wordlist.length;
/random number
int rand = (int) (Math.random() * length);
//building phrase
String phrase = wordlist[rand];
// printing phrase
phrasem = new JLabel("Today your emotion is:");
add (phrasem);
label = new JLabel(" " + phrase);
add (label);
}
public static void main(String[] args)
{
Emotion gui = new Emotion();
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
gui.setSize(400, 100);
gui.setVisible(true);
gui.setTitle("My App (Alex Gadd)");
}
}