Apr

12

12.04.2017

Comments Off on JSP Beginner Code-4 (12.04.2017)

Apr

06

JSP Beginner Code-3

Mar

30

JSP Beginner Code-2

Mar

29

JSP Beginner Code-1

Apr

08

JSP SAMPLE CODES DOWNLOAD

 

Nov

03

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
/*
<applet code=”MyAppEvent1.class” width=”400″ height=”400″>
</applet>
*/
public class MyAppEvent1 extends Applet implements MouseListener{
public void init(){
addMouseListener(this);
}
public void mouseExited(MouseEvent e){
System.out.println(“mouseExited”);
}
public void mouseEntered(MouseEvent e){
System.out.println(“mouseEntered”);
}
public void mouseReleased(MouseEvent e){
System.out.println(“mouseReleased”);
}
public void mousePressed(MouseEvent e){
System.out.println(“mousePressed”);
}
public void mouseClicked(MouseEvent e){
System.out.println(“mouseClicked”);
}
}

 

//—————————————————————————————-

 

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
/*
<applet code=”MyAppEvent2.class” width=”400″ height=”400″>
</applet>
*/
public class MyAppEvent2 extends Applet implements MouseListener{
public void init(){
addMouseListener(this);
}
String msg=””;
public void mouseExited(MouseEvent e){
msg=”MouseExited”;
repaint();
}
public void mouseEntered(MouseEvent e){
msg=”MouseEntered”;
repaint();
}
public void mouseReleased(MouseEvent e){
msg=”MouseReleased”;
repaint();
}
public void mousePressed(MouseEvent e){
msg=”MousePressed”;
repaint();
}
public void mouseClicked(MouseEvent e){
msg=”MouseClicked”;
repaint();
}
public void paint(Graphics g){
g.drawString(msg,100,100);
}
}

 

//———————————————————————————-

 

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
/*
<applet code=”MyAppEvent3.class” width=”400″ height=”400″>
</applet>
*/
public class MyAppEvent3 extends Applet implements MouseListener{
public void init(){
addMouseListener(this);
}
String msg=””;
public void mouseExited(MouseEvent e){
msg=”MouseExited”;
repaint();
}
public void mouseEntered(MouseEvent e){
msg=”MouseEntered”;
repaint();
}
public void mouseReleased(MouseEvent e){
msg=”MouseReleased”;
repaint();
}
public void mousePressed(MouseEvent e){
msg=”MousePressed”;
repaint();
}
int x=40,y=40;
public void mouseClicked(MouseEvent e){
x=e.getX();
y=e.getY();
msg=”MouseClicked”;
repaint();
}
public void paint(Graphics g){
showStatus(x+”,”+y);
g.drawString(msg,x,y);
}
}

 

Nov

03

import java.applet.*;
import java.awt.*;
/*
<applet code=”App6.class” width=”550″ height=”350″>
</applet>
*/
public class App6 extends Applet{
public void init(){
setBackground(Color.yellow);
setForeground(new Color(88,200,0));
}
int x=20;
int flag=0;
public void paint(Graphics g){
if(x==20)
flag=0;
if(x>=500)
flag=1;
if(flag==0)
x=x+5;
if(flag==1)
x=x-5;
g.fillOval(x,20,40,40);
try{
Thread.sleep(200);
}catch(InterruptedException e){
}
repaint();
}
}

 

//——————————————————————–

 

import java.applet.*;
import java.awt.*;
/*
<applet code=”App5.class” width=”350″ height=”350″>
</applet>
*/
public class App5 extends Applet{
public void init(){
setBackground(Color.yellow);
setForeground(new Color(88,200,0));
}
public void paint(Graphics g){
g.setColor(Color.green);
g.fillOval(100,100,70,70);
try{
Thread.sleep(500);
}catch(InterruptedException e){
}
g.setColor(Color.yellow);
g.fillOval(100,100,70,70);
try{
Thread.sleep(500);
}catch(InterruptedException e){
}
repaint();
}
}

 

//————————————————————————

 

import java.applet.*;
import java.awt.*;
/*
<applet code=”App4.class” width=”350″ height=”350″>
</applet>
*/
public class App4 extends Applet{
public void init(){
setBackground(Color.yellow);
setForeground(new Color(88,200,0));
}
int flg=0;
int w=20,h=20,x=100,y=100;
public void paint(Graphics g){
g.fillOval(x,y,h,w);
if(h==100)
flg=1;
if(h==20)
flg=0;
if(flg==0){
h=h+5;
w=w+5;
x=x-1;
y=y-1;
}
if(flg==1){
h=h-5;
w=w-5;
x=x+1;
y=y+1;
}
try{
Thread.sleep(500);
}catch(InterruptedException e){
}
repaint();
}
}

 

//——————————————————————–

 

import java.applet.*;
import java.awt.*;
/*
<applet code=”App3.class” width=”350″ height=”350″>
</applet>
*/
public class App3 extends Applet{
public void init(){
setBackground(Color.yellow);
setForeground(new Color(88,200,0));
}
int w=20,h=20,x=100,y=100;
public void paint(Graphics g){
g.fillOval(x,y,h,w);
h=h+5;
w=w+5;
x=x-1;
y=y-1;
try{
Thread.sleep(500);
}catch(InterruptedException e){
}
repaint();
}
}

 

 

Sep

19

Basics to Inheritance Java Programs CLICK TO DOWNLOAD

Sep

06

Aug

10

Campus Commune is a professional network rolled out by TCS for the academic community. It has been acknowledged and appreciated by the student community across India as an effective tool for collaboration. sharing, learning and exploration.

TCS Campus Commune has launched Code Vita (the biggest Coding Contest in India) on 22nd July,13. This contest shall be open to all the students( FY 14,15 and 16 and 17 batches) of your esteemed Institutions. Request you to kindly ask the students from FY 14,15,16 and 17 batch to subscribe to the portal. The process of launching Campus Commune has been attached below. Please share it with all the students at your Institute. The students registering on this portal from a TCS non accredited Institute are called Direct Candidates.

The contest will provide the candidates a competition platform on a national level to test their talents and they will witness a really enriching learning experience.

�The Registration and Team Formation process for Code Vita is open till 12th August,13.

The subscription to TCS Campus Commune is a prerequisite to register and participate in Code Vita. The subscription to Campus Commune is free of cost. Please see the attachment below which needs to be supplemented with the process of launching Campus Commune and sent across to the students.�

FOR MORE DETAILS CLICK THE FOLLOWING URLS:-

Codevita_Participation_Guidelines_For_Direct_Trainees

CodeVita_2013_Registration_and_Team_Formation

Jun

14

JDK1.6 DOWNLOAD

Mar

16

Click to Download Sample Code Day-5

Mar

09

School of Management Sciences, Varanasi with Waayoo.com will organize a workshop on “Web Application Development(RIA)” using Java Technology for MCA Students to match the present web development requirements. This workshop will cover all the advanced java technology topics like GWT, Spring, Hibernet, MVC etc. from 11.03.2013 to 16.03.2013.

SMS VARANASI WORKSHOP

 

 

 

For the complete content details of the workshop click here:-

Workshop Content Details

 

Prerequisite to do this workshop: Participants are adviced to develop some java programs using Eclipse IDE and revise JAVA OOPs concepts