Hi to get the product atribute on cart page
place the below code in
in app/design/frontend/default/your_theme/template/checkout/cart/item/default.phtml
<?php
$_item = $this->getItem();
$_product = $_item->getProduct()->load();
?>
<?php echo $_product->getCustomAttribute(); ?>// place ths where ever you show
and replace theCustomAttribute with your attribute code
thanks