Questions tagged [eclipse]

Eclipse is an open source IDE and platform for building applications. There is a wide variety of plugins for various programming languages and other development-oriented tools (such as modeling, database browsing, etc.). This tag should only be used for questions specifically about the Eclipse IDE or platform, not for generalized (Java, etc.) programming topics.

Eclipse IDE is an open-source IDE platform written mostly in Java and primarily used for Java development through the use of the Java Development Tools (JDT) plug-ins. It is notable for its rich ecosystem of free and commercial plugins and that it is predominantly itself composed of plug-ins.

Eclipse IDE is built on an OSGI implementation called Equinox; the same OSGI-based framework is used for managing its plug-ins at runtime. Eclipse can also be used as a development environment for non-IDE GUI applications, leveraging many of the same plug-ins as the IDE to form a more general Rich Client Platform, called Eclipse RCP.

For C/C++ development, the Eclipse CDT Project provides plug-ins to create a C/C++ development environment within Eclipse IDE.

The Eclipse Web Tools Platform project supplies plug-ins for developing Open web standards-based and Java web applications, and frameworks for building higher-level web tools.

For PHP development, the Eclipse PDT Project provides a plugin to create a PHP development environment within Eclipse IDE, building on features of the Web Tools Platform. The popular commercial Zend Studio is also based on Eclipse IDE.

For Python development, PyDev provides plug-ins, called PyDev, to create a Python development environment within Eclipse IDE.

For Perl development, the EPIC project provides a plugin to create a Perl development environment within Eclipse IDE.

Note that Google has ceased developing the Android Development Tools in favor of another solution.

When combined with Cygwin (or MinGW), Mono, and its many plugins, Eclipse IDE provides a crucial part of viable open-source alternatives to using Microsoft Visual-Studio as a Windows software development platform in Windows, whilst also including comprehensive native support for Java.

Download the latest version of Eclipse IDE from eclipse.org
Download site for the Eclipse Platform project itself, including the core runtime and SDK
Eclipse Marketplace featuring Plug-ins, Bundles and Products

###Useful Links:


Within the Stack Overflow community, Eclipse is synonymous with the Java IDE, but that does not mean questions about Java are questions about the IDE.

Consider what changes your question would require if you were using vi to edit and ant to build; if your question would remain unchanged, then it is not an Eclipse question, so you should not give your question the tag. Use the tag instead.

Initial release Eclipse (1.0 - 7 November 2001)

Latest Version: Eclipse 2023-06 (4.28 - 14 June 2023)

If you suspect your issue is version specific, list the version in your question.

124735 questions
39
votes
1 answer

Can Eclipse the Organize Import (ctrl+shift+o) command's handling of static imports be modified?

I use the Eclipse keyboard shortcut Ctrl + Shift + O all the time (Organize Imports). However, it has one particularly annoying behavior: If I have any static imports like: import static java.lang.Math.*; Organize Imports will "helpfully" replace…
ulmangt
  • 5,343
  • 3
  • 23
  • 36
39
votes
8 answers

INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES on adb install

The same Android project is built in debug mode, sometimes with Eclipse, sometimes with ant (on build machine). If I first install the ant build, and then try to start Eclipse debugging, the Eclipse console displays [2012-03-20 13:32:26 -…
Juuso Ohtonen
  • 8,826
  • 9
  • 65
  • 98
39
votes
8 answers

Cannot complete the install because of a conflicting dependency

I am using eclipse helios (IDE for Java EE developers) 64 bit latest version and when I am trying to update it from help>check for updates I am getting the error: Cannot complete the install because of a conflicting dependency Why I am getting…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
39
votes
7 answers

Debug Playframework in Eclipse

I just moved from Netbeans to Eclipse. In Netbeans, I can debug Playframework applications out of the box. However, in Eclipse, it seems hard to configure this in order to debug a web app (a Playframework app in specific). As in Play! documentation,…
Thang Nguyen
  • 1,161
  • 4
  • 16
  • 30
39
votes
9 answers

The application “Eclipse” can’t be opened. (macOS Monterey)

I downloaded Eclipse on my Mac for school, following these instructions: In your browser, go to Eclipse Downloads. Do not use the Eclipse Installer. Instead follow these steps to download and install Eclipse. Find the Eclipse IDE for Java…
sadnapoleon
  • 536
  • 1
  • 4
  • 13
39
votes
4 answers

Eclipse organize methods in alphabetical order

I have a large class that contains about 30 methods. Is it possible to automatically sort them in alphabetical order in eclipse? I was hoping to do this so they would be easier to find when java browsing or looking at the class outline window.
39
votes
4 answers

Exclude directories & subdirectories from validation in Eclipse

How do I exclude a folder AND its sub-directories from validation in eclipse? I know that you can right click on a folder in Package Explorer and select Exclude Validation, but if you have sub-directories under it, you'd have to this for each and it…
Ayyoudy
  • 3,641
  • 11
  • 47
  • 65
39
votes
4 answers

Android Eclipse: Traceview, I just don't get it

I just don't get the various elements of the traceview output, and I can't find a tutorial. Could someone please explain the following with reference to the diagram below: The width of the bars corresponds to the time the function takes. What does…
tjb
  • 11,480
  • 9
  • 70
  • 91
39
votes
5 answers

change the name of android project

Is there any posibility that I could change the name of my project as it appears in Package Explorer.I'm using Eclipse IDE.I tried to edit the string.xml in res/value folder but that won't change it in the Explorer View.
adrian
  • 4,574
  • 17
  • 68
  • 119
39
votes
3 answers

Online radio streaming app for Android

I'm building an Android app that will stream several radio stations from a Latin Country, there is like 10 stations that I know can be played in android, I got the URL's from them and actually made them work using this tutorial (link removed,…
zvzej
  • 6,276
  • 7
  • 33
  • 41
39
votes
5 answers

Eclipse: make curly bracket more noticeable

I am using Eclipse. You see this ending curly bracket next to catch(FileNotFoundException fne) {: How do I make it more noticeable when I select on starting curly brackets so I can clearly see where it ends?
test
  • 17,706
  • 64
  • 171
  • 244
39
votes
5 answers

How to disable auto formatting upon save in Eclipse?

Eclipse keeps auto formatting upon save, for example: it is insisting the following code should be in a single line once I save, despite breaking it up the way I want to. @Transactional(rollbackFor = DataAccessException.class, readOnly = false,…
Oliver
  • 3,592
  • 8
  • 34
  • 37
39
votes
8 answers

InvalidModuleDescriptorException when running my first java app

I have started learning Java and encountered a problem when trying to run my first program as given below: public class HelloWorld { public static void main(String[] args) { // TODO Auto-generated method stub …
Hainan_dev
  • 391
  • 1
  • 3
  • 6
39
votes
6 answers

have IntelliJ IDEA refresh the project and detect changed files

I'm using Eclipse for development because of all the things IntelliJ can't do (e.g. highlight all instances of a variable) and because IntelliJ is dog slow over a remote connection. But because I still don't have Maven integrated completely into…
Garret Wilson
  • 18,219
  • 30
  • 144
  • 272
39
votes
3 answers

How to convert an Eclipse Android project to use Ant for build?

I have an Android project in Eclipse I would like to convert to be built with Ant instead. How can I achieve this? I have tried exporting an Ant build file but I'm pretty sure that's not going to work (nor does it when running ant with the exported…
Jason
  • 4,034
  • 4
  • 40
  • 62