3

我想知道如何运行/使用我下载的以下 Eclipse 插件:

有一个名为“tarlog”的人在这个谷歌代码网站上为 Eclipse 制作了一个插件:http ://code.google.com/p/tarlog-plugins/downloads/detail?name=tarlog.eclipse.plugins_1 .4.2.jar&can=2&q=

它还有一些 Eclipse 的其他功能,其中包括 Ctrl++ 和 Ctrl+- 来更改字体大小。

我试过运行>外部工具>外部工具配置。我将 C:\Users\User\workspace\tarlog.eclipse.plugins_1.4.2.jar 作为位置,将 C:\Users\User\workspace(包含文件的文件夹)作为工作目录。这会导致以下错误:

执行命令行时发生异常。无法运行程序“C:\Users\User\workspace\tarlog.eclipse.plugins_1.4.2.jar”(在目录“C:\Users\User\workspace”中):CreateProcess 错误=193,%1 不是有效的 Win32应用

这令人费解,因为我运行的是 64 位 Windows。只是想知道如何运行/使用插件。

4

2 回答 2

5

这看起来像一个普通的 Eclipse 插件。

对你来说应该足够了:

1)复制你安装eclipse的文件夹中的文件夹.jardropins\plugins如果文件夹不存在,请创建它们。

注意:这是 eclipse 安装路径 ( [Eclipse path]\dropins\plugins),而不是您正在工作的工作区。

2) 重启 Eclipse。

就是这样,你的插件很好用。

于 2013-10-01T14:51:51.867 回答
1

Tarlog 插件需要安装 Java 开发工具 (JDT)。如果您更喜欢使用专为非 Java 开发(例如 PHP 开发)设计的 Eclipse 版本,这一点很重要。

就我而言,tarlog 在 Eclipse 启动时未被识别。

所以我通过 Eclipse Marketplace 安装了 JDT。

如果没有 JDT,插件无法识别,查看日志文件:

  !MESSAGE Unable to satisfy dependency from tarlog.eclipse.plugins 1.4.2 to bundle org.eclipse.jdt.ui 3.4.0.

 /home/knb/.p2/pool/plugins/org.eclipse.platform_4.6.1.v20160907-1200/splash.bmp
Debug options:
    file:/opt/eclipse/php-neon/eclipse/.options loaded
Time to load bundles: 51
..
[p2] Mon Nov 14 10:05:24 CET 2016 - [Start Level: Equinox Container: 50199877-49aa-0016-1ecb-d3e3ab767be8] [reconciler] No extra requirements.
!SESSION 2016-11-14 10:05:19.506 -----------------------------------------------
eclipse.buildId=4.6.1.M20160907-1200
java.version=1.8.0_111
java.vendor=Oracle Corporation
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=en_US
Framework arguments:  -product org.eclipse.epp.package.php.product -Dhelp.lucene.tokenizer=standard -Dosgi.requiredJavaVersion=1.7 -XX:MaxPermSize=256m -Xms256m -Xmx3072m eclipse
Command-line arguments:  -os linux -ws gtk -arch x86_64 -product org.eclipse.epp.package.php.product -Dhelp.lucene.tokenizer=standard -Dosgi.requiredJavaVersion=1.7 -XX:MaxPermSize=256m -Xms256m -Xmx3072m eclipse -clean -console -consoleLog -debug /opt/eclipse/php-neon/eclipse/.options

[p2] Mon Nov 14 10:05:24 CET 2016 - [Start Level: Equinox Container: 50199877-49aa-0016-1ecb-d3e3ab767be8] [reconciler] [plan] 
Some units will not be installed, because they are already installed or there are dependency issues:
tarlog.eclipse.plugins 1.4.2
!MESSAGE Problems resolving provisioning plan.
!MESSAGE Unable to satisfy dependency from tarlog.eclipse.plugins 1.4.2 to 
bundle org.eclipse.jdt.core 0.0.0.
!MESSAGE Unable to satisfy dependency from tarlog.eclipse.plugins 1.4.2 to 
bundle org.eclipse.jdt.ui 3.4.0.
于 2016-11-14T09:20:55.983 回答