Posts

Java Chat Application or Java Messenger

Java Chat Messenger  with Source Code  If you want chat application in java you are at right place just reefer following java code to do your own java ChatApp. No worry about java packages, code construction and all just copy and paste the following code and enjoy java Messenger (Chat App). Requirements  Eclipse (Any version ) Java Jdk 6 n above  Operating system (Any Windows Mac or Linux)    Steps1 :   Make following java class ChatMessage Client ClientGUI  Server ServerGUI Make sure all class should be in (Ex:  Name.java)   Steps2: import following java class in your java IDE's. ************************************************************************************************ ChatMessage.java import java.io.*; public class ChatMessage implements Serializable {     protected static final long serialVersionUID = 1112122200L;     static final i...

Java Access Specifiers and Modifiers

Following information is always help you out for Java access specifiers :   Access specifiers, specify the access to our code for other classes – whether other classes can access or not and if permitted, to what extent they can access. Java includes access modifiers also which are quiet different from access specifiers. Here is the Java Standard Access Specifiers   1.Default 2.Public 3.Private 4.Protected All the access specifiers are Java keyword .and every access specifiers having its own accessibility propriety and thereby its should be written in lower-case only . 1. public Let us assume that the eat() method is public. If a member of a class is public 1. It can be accessed by the classes of the same package. That is, Lion of the same package can access it. 2. It can also be accessed by the classes of other packages also. That is, Peacock of other package also can access. public member of a class can be accessed by any class of any package as ever...

windows 7 activator

How to activate windows 7  Procedure: 1] Turn off the internet connection  2] Turn off the windows firewall  3] Open zip file  4] Run windows7.exe file ;wait some time  5] Restart the system.  Dowonload file here https://drive.google.com/open?id=0B49T6J0h_1_gZXJwU3RJNC1KTDg&authuser=0
 SCJP Dumps Here we are provide the dumps in pdf format for Java SE 6 Version. These dumps are also 100% verified and it contain 265 question which will cover almost all the questions in the exam OCJP/SCJP.   Part 1            SCJP 2 Part 3            SCJP 1 Part 2            SCJP 3 Part 4            SCJP 4      Sun Certified Java Professional(SCJP) exam is now Oracle Certified Professional Java Programmer (OCPJP) exam. Refers above dumps for great experience in (OCP JP) or SCJP exam.    

What is java Filter ? With examples.

Image
What is java Filter ? With examples ... A filter is nothing but java class; A filter offers a useful way of performing filtered functionality in a java  web application. Typically, filters do not generate content themselves, although in this example, the filter will generate some minimal content to show how it is called. A filter implements the javax.servlet .Filter interface . The primary filter functionality is implemented by the doFilter() method of the filter. Method Summary  void destroy ()           Called by the web container to indicate to a filter that it is being taken out of service.  void doFilter ( ServletRequest  request,  ServletResponse  response,  FilterChain  chain)           The  doFilter  method of the Filter is called by the container each time a request/response pair is passed through the chain due to a client...