新电脑,Eclipse 坏了

发布于 2024-10-11 10:00:31 字数 472 浏览 2 评论 0原文

我周五收到了我的新电脑,在移动完所有开发项目后,我的 Eclipse“悬停”弹出窗口停止工作。我的意思是,通常当我将鼠标悬停在元素/方法/等...上时,会弹出一个包含 javadoc 信息的小窗口,告诉我参数和方法的描述。现在它只是说:

注意:在附加的源代码和附加的 Javadoc 中都找不到该元素的 Javadoc。

我已经看到 this SO 帖子并尝试过。尽管我会说,当您进入“首选项”>“java”>“已安装的 jre”>“编辑”时,有 15 个不同的包。所有都指向文档的 http:// 地址。

另外,我安装的 Android 文档也没有启动(这正是我正在开发的目的)。

I received my new computer friday and after moving over all of my development projects, my Eclipse "hover" popups have quit working. What I mean is usually when I hover over an element/method/etc... , a small window with the javadoc info will pop up telling me parameters, and a description of the method. Now it just says:

Note: The Javadoc for this element could neither be found in the attached source nor the attached Javadoc.

I've already seen this SO post and tried it. Although I will say there are 15 different packages when you go into preferences>java>installed jre's>edit. All point to an http:// address for the docs.

Also the Android documentation I installed doesn't pull up either (which is what I'm developing for).

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

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

发布评论

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

评论(1

澉约 2024-10-18 10:00:32

这是您的标准 Java 类/方法/等吗?或者自定义/Android 代码?我认为你的问题是因为你安装了JRE。您需要从此处下载Java SE 6 SDK。 JDK 拥有所有标准 Java 类的源文件。安装完成后,在 Eclipse 中,转到

  1. “窗口”->“首选项”->“Java”->“已安装的 JRE”。
  2. 单击“添加...”按钮并选择“标准虚拟机”。
  3. 在“JRE home”字段中输入“C:\your\path\to\java\jdk1.6_xYourVersionx”。它将自动填充“JRE 名称”字段并导入所有必要的 jar。
  4. 单击“完成”,然后单击“确定”。

如果是某些非标准 Java 代码的问题,请确保您已下载源代码。然后,

  1. 右键单击您的项目并转到“构建路径”->“配置构建路径...”。
  2. 选择“库”选项卡并展开 jar 文件的条目。应该有一个子条目“源附件:(无)”。
  3. 选择它并单击“编辑...”按钮并输入源代码的路径。
  4. 单击“确定”和“确定”。

注意:如果您已经安装了 JDK,则可以编辑当前的 JRE 以指向 jdk 文件夹而不是 jre 文件夹,即“C:\Java\jdk1.6.0_xx”而不是“C:\Java\jre6” 。

第二个注意事项:您的 Java 位版本必须与您的 Eclipse 位版本相匹配,因此 32 位 Eclipse 需要 32 位 Java,等等。

Is this with your standard Java classes/methods/etc. or for custom/Android code? I think your problem is because of your installed JRE. You need to download the Java SE 6 SDK from here. The JDK has all of the standard Java classes' source files. Once you have it installed, in Eclipse, go to

  1. 'Window'->'Preferences'->'Java'->'Installed JREs'.
  2. Click the 'Add...' button and select 'Standard VM'.
  3. In the 'JRE home' field put "C:\your\path\to\java\jdk1.6_xYourVersionx". It will automatically populate the 'JRE name' field and import all of the necessary jars.
  4. Click 'Finish' and then 'OK'.

If it's a problem with some nonstandard Java code, make sure that you've downloaded the source code. Then,

  1. Right-click on your project and go to 'Build Path'->'Configure Build Path...'.
  2. Select the 'Libraries' tab and expand the entry for your jar file. There should be a sub-entry 'Source attachment: (None)'.
  3. Select it and click the 'Edit...' button and put in your path to the source code.
  4. Click 'OK' and 'OK'.

NOTE: If you've already installed the JDK, you can edit your current JRE to point to the jdk folder instead of the jre folder i.e. "C:\Java\jdk1.6.0_xx" instead of "C:\Java\jre6".

2nd NOTE: Your bit version of Java must match your bit version of Eclipse, so 32-bit Eclipse requires a 32-bit Java, etc.

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