Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Applet programsRSS Feeds

An applet program that concatenates two string entered in TextField

Posted By: Easy Tutor     Category: Java     Views: 5275

Write an applet program that concatenates two string entered in TextField.

Code for An applet program that concatenates two string entered in TextField in Java

/* <applet code="concat2Str" height=150 width=350>   </applet> */

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

publicclass concat2Str extends Applet
{
       TextField Ts1,Ts2;

       publicvoid init(){
            Ts1 = new TextField(10);
            Ts2 = new TextField(10);
            add(Ts1);
            add(Ts2);
            Ts1.setText("");
            Ts2.setText("");
        }

        publicvoid paint(Graphics g){
            String str1,str2;

            g.drawString("Enter Two String to Concat Them ",10,50);

            str1=Ts1.getText();
            str2=Ts2.getText();
            g.setColor(Color.red);
            g.drawString(str1+" "+str2,10,70);
            showStatus("Concatination of 2 String");
     }

     public boolean action(Event e, Object o){
           repaint();
           returntrue;
    }

}
  
Share: 



Easy Tutor
Easy Tutor author of An applet program that concatenates two string entered in TextField 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

Related Articles and Code:


 
Please enter your Comment

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

 
Nitesh Bhargava from India Comment on: May 12
thank you for your code it helped me a lot and saved my time

View All Comments