简体   繁体   English

谁能在Mac OS 10.5.8上运行Eclipse galileo

[英]can anyone run eclipse galileo on mac os 10.5.8

I am having a serious pain trying to run eclipse in mac os x 10.5.8. 我在尝试在Mac OS X 10.5.8中运行Eclipse时遇到了严重的痛苦。 I tried every version carbon, cocoa, 32, 64 bit but nothing works i keep getting 我尝试了所有版本的碳,可可,32、64位,但是没有任何反应

java.lang.NoClassDefFoundError` java.lang.NoClassDefFoundError`

... or ... ... 要么 ...

An internal error occurred during: "Launching TestFooBasicTest". 在以下过程中发生内部错误:“启动TestFooBasicTest”。 Could not initialize class com.ibm.icu.impl.JavaTimeZone error. 无法初始化类com.ibm.icu.impl.JavaTimeZone错误。

... when I try to run the main class. ...当我尝试运行主类时。

I know there's another thread in stack overflow but there's no proper answer if someone fixed it. 我知道堆栈中还有另一个线程溢出,但是如果有人修复了它,就没有正确的答案。

Please let me know if someone fixed it 请让我知道是否有人修好了

ICU developer here. ICU开发人员在这里。 Can you save this code as 'tztest.java' and then run "javac tztest.java ; java tztest" 您可以将此代码另存为“ tztest.java”,然后运行“ javac tztest.java; java tztest”

public class tztest {
    public static void main(String args[]) {
        String[] availableIds = java.util.TimeZone.getAvailableIDs();
        System.out.println("Length: "+availableIds.length);
        for (int i = 0; i < availableIds.length; i++) {
            System.out.println("ID #"+i+": "+availableIds[i]);
        }
    }
}

Don't paste the whole output (may be several hundred lines).. but are there any NULL strings? 不要粘贴整个输出(可能是几百行)。但是有没有NULL字符串?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM