in this i write the cookie value in controller file. i wanna read that cookie value in view file than how it possible.
After all CakePHP is a PHP framework, you can read them by $_COOKIE :)
Bear in mind that you should use:
$this->Cookie->write('myValue', $value, false);
in your controller, because otherwise it will be encrypted and it will be hard to use :)