Is it possible to see the content of the compressed file?

How we can view the content of the file,if it compressed (or) Zipped ,without uncompress ?

I have one file ,i compressed it,without uncompressing the file.Is it possible to see the content of the file?

Some tools such as less will allow you to inspect the contents of some compressed files without explicitly decompressing them. Of course, behind the scenes, it is extracting the compressed data to a temporary location.

As era explains, the answer is no, not really, but you might be able to get a similar effect by uncompressing to stdout.
For a file in a zip archive, try unzip -c .
For compressed files, try gunzip -c or equivalently gzip -dc or zcat.