i have a program running with lot of system.out.println statements.. i want to display this in a javaframe...can anyone tel me the steps to go abt it

Recommended Answers

All 2 Replies

The following code is used for creating java frame.

import java.awt.*;
import java.awt.event.*;
class test extends Frame implements WindowListener{
      test(){
             setTitle("Java Frame");
             setSize(400,250);
             addWindowListener(this);
             setVisible(true);
      }

      public void windowOpened(WindowEvent e){}

      public void windowClosing(WindowEvent e){
             System.exit(0);
      }

      public void windowClosed(WindowEvent e){}

      public void windowIconified(WindowEvent e){}

      public void windowDeiconified(WindowEvent e){}

      public void windowActivated(WindowEvent e){}

      public void windowDeactivated(WindowEvent e){}

      public static void main(String ars[]){
             test t = new test();
      }
}

this code is used to print the string in the frame

  Graphics g;
  g.drawString(variable_name,x,y);
variable_name -> print string
x -> x axis in the frame
y -> y axis in the frame

this code is used to print the string in the frame

.,ahuh!
i see..

commented: This adds absolutely no value to the thread. -1
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.