I try to use the PdfAction in combination with the PdfOutline to create a link to a document stored on a central network location. This works fine, but when cyrillic characters are used in the url, the system can not find the document. Investigation learned that in the link opened by the Pdf all cyrillic characters are gone ?!.
My Code:
//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");
What did I do wrong?