将Drupal 6博客导出为CSV

时间:2017-05-31 16:09:40

标签: drupal drupal-6

我正在使用Drupal 6作为客户端,我想将Blog条目导出为CSV以及标题和正文内容和图像。

我已安装了视图数据导出模块并转到

观点--->添加并给出视图名称,如: 博客 blog_entry export_test

从我尝试的视图类型: 节点 node_revisions

但它说: 您正在寻找的页面似乎不存在。请确保您输入的地址正确无误,或稍后再试。

如何导出?

1 个答案:

答案 0 :(得分:0)

我认为您必须阅读正在使用的模块的README.txt。如您所说,您正在将它与Drupal 6一起使用,请将以下说明检入模块README.txt http://cgit.drupalcode.org/views_data_export/tree/README.txt?h=6.x-3.x

PdfReader reader = new PdfReader("input.pdf");
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream("output.pdf"));
List<PdfCleanUpLocation> cleanUpLocations = new ArrayList<PdfCleanUpLocation>();

cleanUpLocations.add(new PdfCleanUpLocation(1, new Rectangle(0f, 0f, 595f, 680f)));

PdfCleanUpProcessor cleaner = new PdfCleanUpProcessor(cleanUpLocations, stamper);
cleaner.cleanUp();

stamper.close();
reader.close();

希望这会有所帮助!