- 締切済み
ウインドウ上で変数を表示する方法はありますか?
ウインドウ上で変数を表示する方法はありますか? system.out.println()ではコマンドプロンプトだけで表示されるので それをウインドウを作成して表示させたいんです。 よろしくお願いします。 import java.awt.*; import java.awt.event.*; import java.applet.Applet; import java.awt.Graphics; class PrefFrame extends Frame { public PrefFrame(String title) { //フレームのタイトル setTitle(title); //ウィンドウを閉じる時 addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }); } } public class xptable { public static void main(String[] args) { PrefFrame frm = new PrefFrame("ラテーブル"); frm.setLocation(300, 200); frm.setSize(600, 480); frm.setBackground(Color.black); frm.setVisible(true); double exp = 0; int Lv = 1; double xp = 1900; double cxp = 0; while(Lv < 200){ if (cxp>xp){ Lv = Lv+1; System.out.println("レベル"+ Lv +"になりました。おめでとうございます。"); xp = xp*1.1; } else { exp = Math.round((Math.random()*90000000)); System.out.println((int)Math.floor(exp) + " 経験値獲得しました。");/*切捨て*/ cxp = cxp+exp; } } } }
- みんなの回答 (1)
- 専門家の回答
みんなの回答
swingなりでウィンドウ作っているのなら、ウインドウ上にマルチラインのテキストボックスなりを配置して、その中に表示すれば良いのでは? [参考]Java Platform, Standard Edition 6 API 仕様 http://java.sun.com/javase/ja/6/docs/ja/api/index.html