If you will use Nutch's binary executable, run -readseg command after crawling. It will give you a huge file which contains all the raw html and other info in it. You can parse and save the needed data to database after that.
If you willing to run Nutch in Eclipse, you should add some code to the class Fetcher.
pstatus = output(fit.url, fit.datum, content, status, CrawlDatum.STATUS_FETCH_SUCCESS);
updateStatus(content.getContent().length);
Write a simple call and write to database code after these lines in Fetcher class. You can get the raw html by:
content.getContent();
This returns a byte array representation of the html file, convert it to String and save it to your database. You might suffer from character encoding: Nutch with UTF-8 to configure Nutch. However, the problem generally occured by Eclipse's encoding. To overcome that, take the substring of the content which includes "charset" value and:
String yourContent = new String(content.getContent, encodingYouFound);
"encoding" here is a String, so it will be enough to retrieve it from the "content". If you can't, some sites might not have the charset attribute, use a general encoding such as UTF-8.