How do I export the headlines of all the blog posts in a single category?

You can create a new page template, and in that template put:

<?php wp_get_archives('type=postbypost'); ?>

This will list every one of your posts by post date.

(Reference: wp_get_archives)