3

ダウンロードした次の Eclipse プラグインを実行/使用する方法を知りたいです。

この Google コード サイトで Eclipse 用のプラグインを作成した「tarlog」という人物のプロジェクトがあります: http://code.google.com/p/tarlog-plugins/downloads/detail?name=tarlog.eclipse.plugins_1 .4.2.jar&can=2&q=

Eclipse 用の他の機能がいくつかあります。その中には、フォント サイズを変更するための Ctrl++ と Ctrl+- があります。

Run>External Tools>External Tools Configurations を試しました。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ビットウィンドウを実行しているので、これは不可解です。プラグインの実行/使用方法を知りたいだけです。

4

2 に答える 2

5

これは、通常の Eclipse プラグインのように見えます。

次のことを行うだけで十分です。

.jar1)Eclipseをインストールしたフォルダー内のフォルダーにコピーしdropins\pluginsます。フォルダーがまだ存在しない場合は作成します。

注: これは Eclipse のインストール パス ( [Eclipse path]\dropins\plugins) であり、作業中のワークスペースではありません。

2) Eclipse を再起動します。

以上で、プラグインは準備完了です。

于 2013-10-01T14:51:51.867 に答える
1

Tarlog プラグインには、Java Development Tools (JDT) がインストールされている必要があります。これは、Java 以外の開発 (PHP 開発など) 用に設計されたバージョンの Eclipse を使用する場合に重要です。

私の場合、Eclipse の起動時に tarlog が認識されませんでした。

そこで、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 に答える