Posts

Showing posts with the label eclipse

I am not able to create groovy project

Image
I am not able to create groovy project I have used different approaches- My system has jdk 1.8.1. I tried installing Eclipse (oxygen and photon), Java programs are running fine but when I am installing groovy plugin from Help -> Install new software, it's not running. Then I tried installing different IDE that is NetBeans, here also I am not able to create project. Error: Warning | Unrecognized flag: non-interactive. Error | Specify an application name or use --inplace to create an application in the current directory You need to provide more information on what you did in Eclipse, and what the exact problem is with setting up Groovy. Just saying "it's not running" is insufficient. – skomisa Jul 1 at 18:28 Also, since you are asking two distinct questions in the post above it would be appropr...

Cannot run Eclipse; JVM terminated. Exit code=13

Image
Cannot run Eclipse; JVM terminated. Exit code=13 I just append -vm C:Program FilesJavajre6binjavaw.exe in eclipse.ini then I try to start eclipse again and got this error. Give me how to solve or link that actually solve it. this is my eclipse.ini -startup plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810 -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile -vm C:Program FilesJavajre6binjavaw.exe -vmargs -Xms40m -Xmx384m Thank you stackoverflow.com/a/9636283/405117 this helped me – Vikram Nov 1 '12 at 20:59 If Eclipse stopped working after you upgraded from Java 7 to Java 8 (1.8.0 u25 or higher), it's possible your Eclipse is 64-bit and requires a 64-bit versio...

Running the WSO2EI

Running the WSO2EI I started the system based on the following address: https://docs.wso2.com/display/EI620/Quick+Start+Guide 1. ESB , Business Process and Analytics profiles came up. But the json request will not be sent. total requests for Healthcare API is zero. Have you ever had such an experience? What is your proposed solution for the problem? 2.My another problem with the WSO2 Developer Studio . I downloaded it. How can I write a HelloWorld in this program as a micro-service . For example, whenever a specific request came, it would display a HelloWorld page. 4.Is there a specialty forum for wso2? Hi, about 1. Were able to execute the curlcommand and succesfully send the JSON request? Please elaborate what in what step and action you were running into problems. Any errors in the logging? – Jan Jul 2 at 9:29 ...

Javac cannot find SWT library despite correct classpath

Javac cannot find SWT library despite correct classpath I have a Java project that uses SWT and compiles/runs perfectly. When I try to compile via Ant, however, javac cannot find the SWT library despite the build.xml specifying the correct classpath. The SWT library is located in C:my_workEclipse3.6-64plugins . As seen below (under the javac tags, this classpath is specified as such. C:my_workEclipse3.6-64plugins javac build.xml <?xml version="1.0" encoding="UTF-8"?> <project default="run" name="My Project"> <target name="run" depends="compile"> <java classname="com.company.program.project"> <classpath path="staging" location="C:my_workEclipse3.6-64plugins"/> </java> </target> <target name="compile"> <javac includeantruntime="false" srcdir="./src" destdir="staging"> <classpath...

How to declare unlimited variables in a loop depending on user input?

How to declare unlimited variables in a loop depending on user input? I am building a program in eclipse and I want to make a loop in which variables are declared depending on user input. for eg, the first input is stored in a1, next input in a2, next one in a3, and so on until the user types anything other than a number input.hasNextDouble() . input.hasNextDouble() I tried doing this using while loop, and Scanner class with if/else statements. But unable to figure it out. Any help will be appreciated. while Scanner if/else You seem to be looking for a List . – Jacob G. Jun 30 at 14:59 List docs.oracle.com/javase/tutorial/collections – JB Nizet Jun 30 at 15:00 Good...