如何在 Eclipse 3.7.1 中安装 Birt 报表设计器
How to install Birt report designer in Eclipse 3.7.1
我正在尝试按照 report development guide
安装特定报表设计器工具的指南
我已经完成了大部分,但只有一件事没有成功。
根据第18页,我需要将目标更改为
C:\birt371\eclipse\eclipse.exe -vm “C:\Program Files\IBM\Java60\jre\bin\java.exe” –vmargs –Xmx512m
但是因为我的jre安装在
C:\Program Files\Java\jre1.8.0_71\bin\java.exe
我改成了
C:\birt371\eclipse\eclipse.exe -vm “C:\Program Files\Java\jre1.8.0_71\bin\java.exe” –vmargs –Xmx512m
这给了我一个错误:
a java runtime environment (JRE) or Java Development kit (JDK) must be
available in order to run Eclipse. No Java virtual machine was found
after searching the following locations "C:\Program
如果我遗漏了目标
-vm “C:\Program Files\Java\jre1.8.0_71\bin\java.exe” –vmargs –Xmx512m
所以我的目标变成了
C:\birt371\eclipse\eclipse.exe
Eclipse 正常启动,没有错误。
问题:
我无法导入我的报告,我想知道这最后的和平配置是否与此有关。
问题:
如何使用所需的配置?
备注:
对于以前的 java 版本,java(控制面板)中没有安全性,我的问题可能与此有关吗?
-vm
参数强制使用您计算机上的特定 Java 安装。如果您安装了多个 Java,或者 Eclipse 找不到 Java,则特别有用。
如果您只安装了一个 Java 并且 Eclipse 发现它没问题,您可以 直接启动而无需 -vm
参数。
来自 Eclipse help 的 -vm
:
The location of Java Runtime Environment (JRE) to use to run the
Eclipse platform. If not specified, the launcher will attempt to find
a JRE. It will first look for a directory called jre as a sibling of
the Eclipse executable, and then look on the operating system path.
Relative paths are interpreted relative to the directory that eclipse
was started from.
如果您确实需要让 -vm
正常工作,推荐的方法是编辑 eclipse.ini
并将 -vm
放在一行,然后将 vm 的完整路径放在下一行.见 eclipse.ini entry on the Eclipse Wiki.
我正在尝试按照 report development guide
安装特定报表设计器工具的指南我已经完成了大部分,但只有一件事没有成功。
根据第18页,我需要将目标更改为
C:\birt371\eclipse\eclipse.exe -vm “C:\Program Files\IBM\Java60\jre\bin\java.exe” –vmargs –Xmx512m
但是因为我的jre安装在
C:\Program Files\Java\jre1.8.0_71\bin\java.exe
我改成了
C:\birt371\eclipse\eclipse.exe -vm “C:\Program Files\Java\jre1.8.0_71\bin\java.exe” –vmargs –Xmx512m
这给了我一个错误:
a java runtime environment (JRE) or Java Development kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locations "C:\Program
如果我遗漏了目标
-vm “C:\Program Files\Java\jre1.8.0_71\bin\java.exe” –vmargs –Xmx512m
所以我的目标变成了
C:\birt371\eclipse\eclipse.exe
Eclipse 正常启动,没有错误。
问题:
我无法导入我的报告,我想知道这最后的和平配置是否与此有关。
问题:
如何使用所需的配置?
备注: 对于以前的 java 版本,java(控制面板)中没有安全性,我的问题可能与此有关吗?
-vm
参数强制使用您计算机上的特定 Java 安装。如果您安装了多个 Java,或者 Eclipse 找不到 Java,则特别有用。
如果您只安装了一个 Java 并且 Eclipse 发现它没问题,您可以 直接启动而无需 -vm
参数。
来自 Eclipse help 的 -vm
:
The location of Java Runtime Environment (JRE) to use to run the Eclipse platform. If not specified, the launcher will attempt to find a JRE. It will first look for a directory called jre as a sibling of the Eclipse executable, and then look on the operating system path. Relative paths are interpreted relative to the directory that eclipse was started from.
如果您确实需要让 -vm
正常工作,推荐的方法是编辑 eclipse.ini
并将 -vm
放在一行,然后将 vm 的完整路径放在下一行.见 eclipse.ini entry on the Eclipse Wiki.