import java.applet.*;
import java.awt.event.*;
import java.awt.*;
/*<applet code="Appq2.class" height=600 width=600>
</applet>*/
public class Appq2 extends Applet implements MouseListener,KeyListener
{
String msg="";
int x,y;
public void init()
{
addMouseListener(this);
addKeyListener(this);
requestFocus();
}
public void mouseClicked(MouseEvent me)
{
msg="mouseClicked";
repaint();
}
public void mouseEntered(MouseEvent me)
{
showStatus("mouse entered");
}
public void mouseExited(MouseEvent me)
{
showStatus("mouse exited");
}
public void mousePressed(MouseEvent me)
{
msg="mouse pressed";
repaint();
}
public void mouseReleased(MouseEvent me)
{
msg="mouse released";
repaint();
}
public void keyPressed(KeyEvent ke)
{
showStatus("key pressed");
}
public void keyReleased(KeyEvent ke)
{
showStatus("key released");
}
public void keyTyped(KeyEvent ke)
{
msg="key typed is "+ke.getKeyChar();
repaint();
}
public void paint(Graphics g)
{
g.drawString(msg,50,50);
}
}
The most common method to Hide your IP address is to use a PROXY server. Proxy server is a computer network service that provides an indirect connections between other computer networks. By using this proxy sites we can access any website with out revealing our IP address. This is the best method to keep your IP address secure. Here is the free proxy server website link. http://www.freeproxyserver.ca/ We need to type the URL of such as (www.facebook.com) in the box given in the site, then we can browse it with out providing our IP address
Comments
Post a Comment