While running some Java applications (like Thinreader) you may see this strange looking error - Couldn’t find per display information .而運行一些Java的應用程式(如thinreader ) ,您可能會看到這樣一種奇特的尋找錯誤-無法找到,每個顯示信息。 You may find this error when running such applications in JDK 6 or later.您可能會發現這個錯誤時運行,例如在申請的JDK 6或更高版本。 Let’s find out more about it and how you can easily fix it.讓我們找出更多有關資訊科技及如何您可以很容易地解決它。

First of all the error doesn’t originate in core Java libraries but in JDIC libraries used by the application.首先,所有的錯誤並不起源於核心Java圖書館,但在jdic圖書館所用的應用。
The JDesktop Integration Components (JDIC) project aims to make Java technology-based applications (”Java applications”) first-class citizens of current desktop platforms without sacrificing platform independence.該jdesktop集成組件( jdic )項目的目的是使基於Java技術的應用( “ Java應用程序” )第一二等公民,目前的桌面平台在不犧牲平台獨立性。 Its mission is to enable seamless desktop/Java integration.其使命是使無縫桌面/ Java的一體化。

JDIC provides Java applications with access to functionalities and facilities provided by the native desktop. jdic提供Java應用程序訪問的功能和所提供的設施本土的桌面上。 It consists of a collection of Java packages and tools.它是一個收集的Java軟件包和工具。 JDIC supports a variety of features such as embedding the native browser, launching the desktop applications, creating tray icons on the desktop, registering file type associations, creating JNLP installer packages, etc. jdic支持多種功能,如嵌入本土的瀏覽器,啟動桌面應用,創造托盤圖標在桌面上,登記的檔案類型關聯,創造jnlp Installer軟件包等。

The application in question is using an old version of JDIC libraries which causes this problem.應用在的問題是,是否使用舊版本的jdic圖書館,導致這個問題。 You can fix it by您可以修正它的 downloading the latest JDIC libraries下載最新的jdic圖書館 (jar files and so files or dll files as appropriate) and using them to replace your current version. ( jar文件等文件或DLL文件酌情而定)並利用它們來取代目前的版本。 For example to fix Thinreader (a simple RSS aggregator), I replaced the following files with the latest version:例如修復thinreader (一個簡單的RSS聚合器) ,我取代了下列文件與最新版本:
lib/jdic.jar的lib / jdic.jar
lib/linux/x86/libjdic.so
lib/linux/x86/libtray.so

Note: .so files are shared objects used in Linux like dll files in Windows.注意:所以文件共享對象使用在Linux一樣, DLL文件在Windows 。 It goes without saying that we are不用說,我們正 Linux based基於Linux . However the instructions above will also work on Windows.但上述指示也將工作在Windows上使用。