Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Applet programsRSS Feeds

An applet program that displays Text at the center of the string which is passed as parameter

Posted By: Easy Tutor     Category: Java     Views: 20364

Write an applet program that displays Text at the center of the string which is passed as parameter.

Code for An applet program that displays Text at the center of the string which is passed as parameter in Java

import java.awt.*;
import java.applet.*;

publicclass displayCenter extends Applet
{
      String str;
    
     publicvoid paint(Graphics g)
     {
          str="Centering Text";
          Font f = new  Font("Serif", Font.BOLD, 30);
          g.setFont(f);
          FontMetrics fm = g.getFontMetrics();
          Dimension d = getSize();
         
          int xc,yc;
          xc=d.width/2 - fm.stringWidth(str)/2;
          yc=d.height/2 + fm.getDescent();
    
           g.setColor(Color.red);
          g.drawString(str,xc,yc);
          showStatus(" Displaying Text at Center of Screen");
    }          
}
  
Share: 



Easy Tutor
Easy Tutor author of An applet program that displays Text at the center of the string which is passed as parameter is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!