1
我嘗試將PdfAction與PdfOutline結合使用來創建指向存儲在中央網絡位置的文檔的鏈接。這工作正常,但是當在URL中使用西里爾文字符時,系統找不到文檔。調查瞭解到,在由Pdf打開的鏈接中,所有西里爾字符都沒有了?!使用西里爾字符的IText PdfAction
我的代碼:
//Create the index tree
PdfOutline index = new PdfOutline(writer.getDirectContent().getRootOutline(), new PdfDestination(PdfDestination.FITH), "Detailed Info");
//Add entry to index
PdfAction act = new PdfAction("file://CENTRALSERVER/Конвертинг/MyFile.xls");
new PdfOutline(index, act, "My File");
我做了什麼錯?