嘗試使用iText7在Android Studio中,我得到了以下錯誤消息:
Didn't find class "java.lang.Character$UnicodeScript" on path: DexPathList
到達時線document.add(new Paragraph("hello"));
在下面的代碼
public void CreatePDF() throws IOException{
File file_pdf = new File("_TEST.pdf");
FileOutputStream fos = new FileOutputStream(file_pdf);
PdfWriter writer = new PdfWriter(fos);
PdfDocument pdf = new PdfDocument(writer);
Document document = new Document(pdf);
document.add(new Paragraph("hello"));
document.close();
}
我已經包含在\庫下列:
itext7-IO-7.0.1.jar
itext7內核-7.0.1.jar
itext7佈局-7.0.1.jar
SLF4J-API-1.7.22。罐子
SLF4J-簡單1.7.22.jar
與以下相關:
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>kernel</artifactId>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.22</version>
</dependency>
任何想法有什麼不對? 在此先感謝
我不知道什麼是錯呢,但我們還沒有發佈iText 7的Android版本。 –