在 Eclipse 上安装 Java3D

发布于 2024-10-17 06:35:30 字数 120 浏览 4 评论 0原文

如果这是一个非常糟糕的问题,请提前抱歉,但我似乎找不到关于如何在 Mac OSX 10.6.6 的 Eclipse 3.6.0 上安装 Java3D 的最新教程。如果有人知道哪里有好的教程,或者您可以给我指示,请这样做。谢谢!

Sorry in advance if this is a really bad question, but I can't seem to find a recent enough tutorial on how to install Java3D on Eclipse 3.6.0 for Mac OSX 10.6.6. If anyone knows where a good tutorial is, or if you can give me instructions, please do so. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

层林尽染 2024-10-24 06:35:30

要将 jar 添加到特定项目的类路径

  1. 在 Project Explorer 视图中右键单击(或在 mac 上按住 cmd 键单击?)您的项目,然后选择属性 > 。 Java 构建路径 >图书馆。
  2. 通过单击“添加外部类文件夹...”按钮添加文件夹“\System\Library\Java\Extensions”

编辑:

鉴于

  • 您有 JDK(版本 1.5) ,我建议您执行以下操作安装了
  • Eclipse for Java 或 Java EE 开发人员(例如,不是 Eclipse Classic)
  • 您可以构建一个普通的 HelloWorld Java 应用程序

基本上,听起来您可能没有将 Java 3D api 添加到您的 JRE 。您在原始问题中链接到的下载包含一个名为 README-unzip.html 的帮助文件,我从中获得了以下说明:

  1. 将 java3d-1_5_1-XXX.zip 下载到临时目录,例如
    “/tmp”

  2. 将 java3d-1_5_1-XXX.zip 解压到“/tmp”,如下所示:

    <前><代码> cd /tmp
    解压java3d-1_5_1-*.zip

    这将在中创建一个“java3d-1_5_1-XXX”子目录
    /tmp 下载的文件可以在其中
    成立。手册所需的文件
    安装是“j3d-jre.zip”。

  3. 将 Java 3D 1.5.1 解压缩到 JDK 的“jre”目录中。为了
    例如,如果您的 JDK 位于
    “/usr/java/jdk1.6.0_01/jre”,你会
    执行以下操作:

    <预><代码> cd /usr/java/jdk1.6.0_01/jre
    解压 /tmp/java3d-1_5_1-*/j3d-jre.zip

    验证 j3dcore.jar、j3dutils.jar 和 vecmath.jar 文件
    最终在
    “/usr/java/jdk1.6.0_01/jre/lib/ext”

To add the jar's to a specific project's classpath:

  1. Right-click (or cmd-click on mac?) your project in the Project Explorer view and choose Properties > Java Build Path > Libraries.
  2. Add the folder "\System\Library\Java\Extensions" by clicking the "Add External Class Folder..." button

EDIT:

I would suggest the following, given that

  • you have the JDK (version 1.5.0 or higher) installed
  • you have Eclipse for Java or Java EE developers installed (not Eclipse Classic for example)
  • you can build a vanilla, HelloWorld Java application already

Basically, it sounds like you might not have added the Java 3D api's to your JRE. The download you linked to in your original question contains a help file named README-unzip.html, which is where I obtained the following instructions from:

  1. Download java3d-1_5_1-XXX.zip to a temporary directory, for example,
    "/tmp"

  2. Unzip java3d-1_5_1-XXX.zip into "/tmp" as follows:

        cd /tmp
        unzip java3d-1_5_1-*.zip
    

    This will create a "java3d-1_5_1-XXX" subdirectory in
    /tmp where the downloaded files can be
    found. The file you need for manual
    installation is "j3d-jre.zip".

  3. Unzip Java 3D 1.5.1 into the "jre" directory of your JDK. For
    example, if your JDK is in
    "/usr/java/jdk1.6.0_01/jre", you would
    do the following:

        cd /usr/java/jdk1.6.0_01/jre
        unzip /tmp/java3d-1_5_1-*/j3d-jre.zip
    

    Verify that the j3dcore.jar, j3dutils.jar, and vecmath.jar files
    end up in
    "/usr/java/jdk1.6.0_01/jre/lib/ext"

原谅我要高飞 2024-10-24 06:35:30

这些线程也可能会有所帮助:

来自:八月

These threads might also be helpful:

From: August

隔纱相望 2024-10-24 06:35:30

前面的说明不适用于将 java3d 安装到 Eclipse 中。在同一个自述文件中,它说:NetBeans 和 Eclipse 等 IDE 的用户应查阅 IDE 的文档,了解如何将 jar 文件和本机库添加到当前项目中。

The previous instructions are NOT for installing java3d into Eclipse. In the same readme file it says: Users of IDEs such as NetBeans and Eclipse should consult the IDE's documentation to see how to add jar files and native libraries to their current project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文