Encapsulation is one of the four fundamental OOP concepts.
The ability to make changes in your implementation code witout breaking the code of others who use your code is a key benefit of encapsulation.
Let me give you an example:
Lets say you have a class User, which holds User name and password;
And
alot of other programmers(may be 1000s) wrote programs that used your class such as:
Now your Manager announced some new rules:
1. user name cannot be null.
2. password cannot be null.
3. No one can set the user name less then 5 characters.
4. No one can set the password less then 5 characters.
Just Think how easy it would be to make above changes by following the encapsulation rules.

instead of changing all the code where your User class is used you would change only setUserName(
string) & setPassword(string) method as per code listed below.
You made the changes only at one place and the the other 1000s of programmers code will adopt those rules automatically!!
Hope This Helps.