2014-02-19 25 views
0

我一直在從他們的網站處理Processing的默認下載,但在重新安裝並完全更新我的Mac之後,IDE將無法加載。刪除處理文件夾(草圖,工具,地段)並沒有幫助..處理確實會重新創建它們,但是卻無能爲力。然後再次打開後,jsut關閉。OSX更新到10.9.1之後處理不會啓動

從終端我看到一個NullPointerException運行處理,主要是轉儲以下:

Exception in thread "AWT-EventQueue-0" java.lang.ExceptionInInitializerError 
    at processing.app.Base.<init>(Base.java:351) 
    at processing.app.Base.createAndShowGUI(Base.java:202) 
    at processing.app.Base.access$0(Base.java:145) 
    at processing.app.Base$1.run(Base.java:139) 
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) 
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733) 
    at java.awt.EventQueue.access$200(EventQueue.java:103) 
    at java.awt.EventQueue$3.run(EventQueue.java:694) 
    at java.awt.EventQueue$3.run(EventQueue.java:692) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) 
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:703) 
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242) 
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161) 
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150) 
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146) 
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138) 
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:91) 
Caused by: java.lang.NullPointerException 
    at processing.core.PApplet.parseInt(PApplet.java:9374) 
    at processing.app.contrib.AvailableContribution.<init>(AvailableContribution.java:51) 
    at processing.app.contrib.ContributionListing.parseContribList(ContributionListing.java:460) 
    at processing.app.contrib.ContributionListing.setAdvertisedList(ContributionListing.java:76) 
    at processing.app.contrib.ContributionListing.<init>(ContributionListing.java:59) 
    at processing.app.contrib.ContributionListing.getInstance(ContributionListing.java:66) 
    at processing.app.contrib.ContributionManager.<clinit>(ContributionManager.java:35) 
    ... 18 more 

任何幫助將appreciataed,我嘗試了一切,我在網上找到,包括downloadind一個新的JDK,但OSX不會安裝我的下載文件,也不需要我更新JDK,正確的版本已經內置到Mavericks中。

回答

0

據我所知Java不是打造成爲小牛)

也許我錯了,但是當我要運行Java程序的Java啓動安裝本身每次食後安裝。看起來Maverick會在需要時根據需要調用所需的安裝過程。

嘗試安裝JDownloader。這通常會爲我啓動Java安裝。

+0

是的。它不僅內置於其中,而且在升級時卸載以前的任何Java安裝。 PITA真的。 –

相關問題