I use Pulse - Plugin Manager for Eclipse and installed. I have an Eclipse 3.5 profile for mobile development (Pulsar) with several other profiles.
I realized that the split () method calls a line from the code, for example:
String data = "one, two, three, four";
data.split(",");
generates an error: "The split (String) method is undefined for the type String." I know that the split () method did not exist before Java JRE 1.4 and may possibly be the cause of the problem. The problem is that I donβt think I have jre / sdk versions installed. Perhaps one of them is built into the Pulsar profile and needs to be edited, but I could not determine which settings (and where) needed to be configured. I checked Windows> Preferences> Java> Installed JREs and set the value> = jre1.4.
source
share