iText文档-解析符号

时间:2018-10-16 15:48:30

标签: java itext

我在Android应用中使用iText创建pdf。

 try{

        File file=new File("test.pdf");
        FileOutputStream fileout=new FileOutputStream(file);
        Document document=new Document();


    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }

这会导致错误(文档抽象类-无法实例化)。

即使在导入import com.itextpdf.text.Document;

之后

它显示了这件事:

Cannot resolve symbol 'itextpdf'

文档显示为错误。

有解决方案吗?

2 个答案:

答案 0 :(得分:0)

首先必须在gradle属性中添加“ compile'c​​om.itextpdf:itextg:5.5.10'”。

第二步,您可以尝试:

  • 退出Android Studio
  • 备份您的项目
  • 删除所有.iml文件和.idea文件夹
  • 重新启动Android Studio并重新导入您的项目

顺便说一句,您在“项目结构”对话框中看到的错误消息大部分并不是实际问题。

答案 1 :(得分:0)

对于第一个错误,请尝试

 try{

    File file=new File("test.pdf");
    FileOutputStream fileout=new FileOutputStream(file);
    com.itextpdf.text.Document document=new com.itextpdf.text.Document();


} catch (FileNotFoundException e) {
    e.printStackTrace();
}

第二

Cannot resolve symbol 'itextpdf'

Android Studio says "cannot resolve symbol" but project compiles