Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Json Editor Plugin installation?

I feel really stupid by asking this question, but how can I install Json Editor Plugin in my Eclipse Helios? I looked at the Forum in sourceforge, but I can't install it neither through .zip or by adding a web site. And will I need to change the execution environment to Java 1.6?

like image 978
lomza Avatar asked Aug 17 '11 09:08

lomza


People also ask

What is a JSON editor?

JSON Editor is a web-based tool to view, edit, format, and validate JSON. It has various modes such as a tree editor, a code editor, and a plain text editor. The editor can be used as a component in your own web application. The library can be loaded as CommonJS module, AMD module, or as a regular javascript file.

How do I edit JSON in Chrome?

JSON Formatter (app) Just insert code into the single box visible on the web page and press the “Format JSON” button. The desired re-formatted text will be displayed below. An “Un-Format JSON” button is available to edit JSON files back to their space-saving original form.


2 Answers

Here is what I did to get the Json Editor Plugin to show up in the Install Dialog.

By doing a little Google-ing, I found this page which describes the steps to install JsonEditorPlugin on 3.4.

After you have followed the first 6 steps, make sure that Group items by category is un-ticked. After that, you can then choose Json Editor Plugin to be installed from the local Zip archive that you have downloaded from the net.

Edit: as a side note, you must not have the unzipped contents of the zip archive in the dropins/ folder, otherwise it will appear as if the plugin is already installed.

Simply dropping the zip contents into the dropins folder however did work also.

Note: You must right click your .json file and choose 'Open with' -> 'Json Editor'

like image 92
tyler Avatar answered Oct 20 '22 00:10

tyler


You can install plugins by just unzipping them into the dropins folder. It does not matter if the zip file contains the parent folders "plugins" and/or "eclipse".

I would recommend Java 1.6 as it brings a better performance and the plugin might require Java 1.6. On your desktop shortcut you use following execution arguments:

eclipse -vm <path to jre 1.6 installation folder>\bin\javaw
like image 33
tomahawk Avatar answered Oct 20 '22 01:10

tomahawk