我正在使用JProfiler6與JBoss6和JDK1.7。我試圖調出我的JBoss,但在服務器啓動時出現錯誤:jprofilerti.dll在絕對路徑中,錯誤:無法在AMD 64位平臺上加載IA 32位.dll
* VM初始化期間發生錯誤。
無法在絕對路徑中找到代理程序庫C:\ Install \ jprofiler7 \ bin \ windows \ jprofilerti.dll,並顯示錯誤:無法在AMD 64位平臺上加載IA 32位.dll *
請幫我解決問題。提前致謝。
我正在使用JProfiler6與JBoss6和JDK1.7。我試圖調出我的JBoss,但在服務器啓動時出現錯誤:jprofilerti.dll在絕對路徑中,錯誤:無法在AMD 64位平臺上加載IA 32位.dll
* VM初始化期間發生錯誤。
無法在絕對路徑中找到代理程序庫C:\ Install \ jprofiler7 \ bin \ windows \ jprofilerti.dll,並顯示錯誤:無法在AMD 64位平臺上加載IA 32位.dll *
請幫我解決問題。提前致謝。
您很可能使用64位Java運行時環境。 64位JRE無法加載32位本機庫。
要麼獲得具有64位本機庫的JProfiler6版本,要麼使用32位JRE。
在加載JProfiler代理的-agentpath VM參數中,將C:\Install\jprofiler7\bin\windows\jprofilerti.dll
替換爲C:\Install\jprofiler7\bin\windows-x64\jprofilerti.dll
。
你可以發佈'java -version'的輸出嗎? – chrylis