-1
votes
0answers
9 views

Debugging jars in Eclipse

EDITED: how can I debug 2 jars that communicate to each other through sockets in eclipse? The setup I have currently (debug configurations - with one jar's main file listed) allows only one jars ...
-1
votes
1answer
16 views

POST Requests from a Servlet

I am writing a servlet using eclipse that receives POST request from a client that should do some splitting on the received text, access google geolocation api to get some data and display to the ...
-1
votes
0answers
30 views

Eclipse Keeps reindexing and wont stop

Before anyone says "Duplicate Thread", this is the only one I found and it didn't help at all! Thread: Re-indexing repository loop - not Maven I followed the advice in that thread, but every time I ...
0
votes
0answers
26 views

Java Sound Recorder, doesn't work

This code does not work. I added some System.out.println("Start capturing...3"); statements to understand where the bug is, and I saw that the bug is in the line.open(format); command. Why am I ...
0
votes
1answer
10 views

Side menu turns white when I scroll dow

I am trying to implement a side menu in my application it works fine for the most part, but the problem I have is that once I display de menu and try to scroll down the whole list turns white ...
0
votes
0answers
6 views

When trying to execute one of the example classes in twitter4j GetHomeTimeline, I'm getting the error: Authentication credentials are missing

I have tried the following solutions (as suggested in answers to similar questions to mine): 1- I tried placing the twitter4j.properties in the same directory of my project in eclipse. Also tried ...
0
votes
1answer
13 views

Error when I try to run App with GoogleMapApiv2

I have problem to run simply app with GoogleMapsApiV2. I did tutorial from this movie: http://www.youtube.com/watch?v=awX5T-EwLPc and I have error's on 13:00 minutes, when trying to run app (the ...
0
votes
0answers
11 views

LWJGL Javadoc with descriptions?

Feel lack about LWJGL's Javadoc descriptions in Eclipse. I mean you can download a javadoc from sourceforge but attributes and methods for example in GL11 there are without description. As a newbie I ...
0
votes
0answers
10 views

Maven to Eclipse build issue while creating web application

I'm trying to build web Service using maven and eclipse. Here is steps I followed. Generated mvn folder struture using comman prompt mvn archetype:generate - ...
0
votes
1answer
12 views

Matlab JavaBuilder jar in Eclipse- missing mkl.dll?

I've been given some jars generated by the Matlab JavaBuilder by some colleagues. Some work fine when I use them in my Eclipse project, but a new one fails with this error: libmwblas: load error: ...
4
votes
1answer
45 views

how to determine the time when you end a sentence during registration?

I wrote on my own a set of code to record what I say through a microphone. I would like to understand the function that google uses for stopping this recording when there is "silence". For example if ...
0
votes
3answers
26 views

How Do I Upload Eclipse Projects to GitHub?

I've read some of the other answers but clearly I am retarded. I need someone to lay it out in baby steps because I'm missing some fundamental step. I have code in Eclipse that I'd like to upload to ...
1
vote
1answer
27 views

Eclipse anonymous class folding

Is there an Eclipse plugin that folds anonymous classes? Preferably something that works like Intellij's closure folding: ...
-6
votes
2answers
56 views

Download webpage using json or xml [on hold]

i know this is not a forum, so asking things like this isn't really accepted here but I really don't know who to turn to anymore. I did a lot of research, i googled some tutorials and checked some ...
0
votes
0answers
12 views

Events combination SmartGWT

I'm working on Java, SmartGWT 2.5 & Mozilla FF 3.6.x. I'm using Tree, TreeGrid & TreeNode in my application. I need to drag a node and while dragging I have to see the other nodes on which ...
-1
votes
0answers
15 views

Eclipse XML formatter form command line [on hold]

First of all if anyone looking for eclipse java formatting form command line its describe here: http://www.peterfriese.de/formatting-your-code-using-the-eclipse-code-formatter/ My problem is that I ...
0
votes
1answer
13 views

Vaadin 7 Vertical Layout

I am new to Vaadin 7 and try to recode the tutorial from the Page. Now i have some problems with Vaadin and Eclipse. I setup the Vaadin project as an Maven Project with dependencies to Vaadin 7.1.0 ...
0
votes
2answers
39 views

Rename Project Name in MyEclipse

I have imported a project in myeclipse. This project a java web project developed in struts. The name of the project is NI-PROJECT. I deploy this project in tomcat6. The deployment location of the ...
0
votes
0answers
14 views

MonkeyTalk enabled Android application does not open on emulator

I have an Android application named "CheckBoxRadioButton". I intend to do Automated Test using MonkeyTalk. I made the Android app MonkeyTalk-enabled by following the instruction mentioned in below ...
-2
votes
2answers
32 views

Extract and store table values from database to dataValues

I want to extract data from database tables and show into a table from in JTable. Here is some code i want to add the data from database base in array dataValues [] [] in this i store values in ...
0
votes
1answer
18 views

Swing control garbled with Chinese, but not with Russian

I work with Eclipse & Java. System.getProperty("file.encoding") == "GBK". All my Swing UI Labels stored in separate properties files(like messages_ru.properties,messages_sc.properties). I use ...
0
votes
1answer
22 views

Generate apk using Eclipse + Android + Phonegap

A project working properly, generates an apk of approximately 400 kb. It had to reinstall eclipse and again generated workspace, the project compiles correctly. Generates the file apk but has 200kb. ...
0
votes
0answers
13 views

ChaseEntity function not working properly in andengine

I need help with my code. What I am trying to do is create a simple move modifier demo to try to better understand andengine. What I did was create a directional background sprite that has bold ...
1
vote
0answers
29 views

Eclipse testing with multiple projects

So, I am trying to set-up a JUnit test suite with multiple projects. I have my main project, which I'll call App, that needs to be tested. Originally, I also had a second project named ...
0
votes
0answers
11 views

How to identify different ANT modules using Eclipse

I downloaded the source code of a software and it was managed using ANT. I've imported some java projects of that source code into eclipse. Now in Eclipse, I can see those projects. However, those are ...
0
votes
1answer
21 views

Maven dependency in a Gradle project

I'm developing a project with gradle. My build file is almost empty so far: apply plugin: 'java' apply plugin: 'eclipse' version = '0.1' repositories { mavenCentral() } dependencies { ...
0
votes
2answers
28 views

Unicode characters in Eclipse

I'm trying to print nice yin-yang from my Java program: System.out.println("\u262f"); Everything is OK in Netbeans (default settings): both yin-yang and other stuff in English is printed ...
0
votes
0answers
14 views

creating kakuro layout for android

I want to create kakuro puzzle for android phone. I work on eclipse with ADT.I have created the screens and their transitions for the user interface. but have you any idea for creating the layout for ...
2
votes
3answers
55 views

Why doesnt the JVM terminate in this case?

I think I have a thread leak in my code, but I am not sure why. Here is the code - foo(String solutionFileName, String SubmissionFileName){ ExecutorService e = Executors.newFixedThreadPool( ...
-7
votes
1answer
45 views

How to make an AppleScript that copies HTML source code from webpages? [on hold]

I just want to know how can I make an AppleScript that copies the source code of an open webpage to the clipboard OR Can I make a script that searches for a specified class on the webpage and copies ...
0
votes
0answers
12 views

Enhance entities in Eclipse at buildtime

I am working on a dynamic web project with Eclipse Indigo and Java 6 runtime environment. I am using Apache Tomcat7 and OpenJPA 1.3 Snapshot. My database is Unidata. So I am using some tools from ...
0
votes
0answers
15 views

Ant build script/eclipse won't compile with deprecated Jars

I've downloaded this library called JODConverter thats been discontinued, https://code.google.com/p/jodconverter/ and I'm trying to include it in my Java Project in Eclipse. I've right clicked on the ...
0
votes
1answer
21 views

Eclipse plugin development - Add own QuickAssist -> Extract to local variable

I would like to add an own quick assist to eclipse. I found out that I need to extend IQuickAssistProcessor to achieve the goal. Because the entry and the logic is rather similar to the "extract to ...
0
votes
2answers
17 views

How to include a config file in the “META-INF/services” folder of a JAR using Maven

I'm working on a Java project in Eclipse, which is built using Maven. I'm using some recycled code from an older project, and one of these classes looks for a file in the "META-INF/services" folder of ...
0
votes
2answers
38 views

java.lang.classnotfoundexception with ant + Junit

I'm trying to get a simple Ant script running, but I'm unable to make it execute tests. I have so many problems that I'm hardly sure where to begin. I'll just start with the small 'simplified' project ...
8
votes
2answers
97 views

How to (safely) remove unnecessary Maven dependencies in Eclipse?

I'm working on a Java project in Eclipse, using Maven to build and manage dependencies. The project is spread across 5 Eclipse projects, one of those being the parent POM. I'm working on a server ...
0
votes
0answers
16 views

Add a directory if it exists to the class.path in Jetty?

I'm trying to add this folder to the path in my jetty server so that any file within that folder can be retrieved with java code without specifying an absolute path. Here is the directory I want to ...
0
votes
1answer
54 views

Eclipse Kepler startup error “NoClassDefFoundError: org/eclipse/swt/widgets/Display”

I am using Eclipse Kepler 64-bit and Sun JDK 1.7.0_25 64-bit on Ubuntu 64-bit. Eclipse worked when I had JDK 1.6 but stopped working after upgrading to JDK 1.7 (using webupd8.org's method and the ...
-9
votes
0answers
50 views

Home Inventory via Stand Alone Vending Machine [on hold]

i was asked to make a prototype of a vending machine which can move and it is connected via computer to monitor its database. can anyone help me? what software and materials do I need? and what ...
0
votes
0answers
13 views

Installing Apache Tomcat on Mac

I am currently trying to install Tomcat on my Mac using these instructions http://www.banym.de/eclipse/install-tomcat-with-eclipse but have quite quickly hit a stumbling block and need help. When ...
0
votes
2answers
20 views

Data Visualization software for java in eclipse

I did Sentiment analysis and I have a positive and negative score as the output. I want to show these data as a Pie Chart. Can you guys suggest me a simple-to-use APIs/JARs that i can use to achieve ...
1
vote
3answers
34 views

Output broken in eclipse java console [duplicate]

I have an array of all 100000 natural numbers(1 ... 100000). I sorted it and printed the sorted array to the console but the console didn't show all the numbers the numbers were from 84599 to 100000 ...
0
votes
2answers
30 views

running unix commands from eclipse

I've a java program that should eventually be wrapped up and run on the unix server. In the program I'm calling mkdir command and Rscript execution but it gives me this error "'Rscript' is not ...
0
votes
0answers
20 views

reuse ElementListSelectionDialog on Eclipse 4 RCP Application

I have a basic implementation of ElementListSelectionDialog, like following. ElementListSelectionDialog dialog = new ElementListSelectionDialog(shell, new LabelProvider()); dialog.setElements(new ...
0
votes
2answers
51 views

Android unable to empty listview items

I am trying to prevent my listview items to append when i press the button twice. I tried to use .Clear() but I dont know where to put it or how to put it, sometimes it stops items from even ...
0
votes
0answers
17 views

view the methods and classes of an eclipse plugin

I have installed an IBM plugin into eclipse "com.ibm.synergy.*" from which new icons have been integrated to the main interface of eclipse. what I need is to find out the APIs and methods each of ...
1
vote
0answers
28 views

A double click on a org.eclipse.swt.custom.TreeCursor isn't detected

When I select an item and then double click it the method mouseDoubleClick() will be called, but when I double click an item which wasn't selected previously then it won't be called. Why? I can hardly ...
0
votes
0answers
35 views

Eclipse 4.3 displaying 'Building Workspaces' Error

I'm an Android/Java newbie, and have installed Eclipse 4.3 on my Mac along with v22 of the ADT and the latest SDK. Whenever I click New >Android Application Project, and fill out the details, it ...
0
votes
1answer
27 views

log4j.properties configuration issues along with ant configuration

I've speent a lot of time reading the posts on stackoverflow regarding log4j and the different ways it can be implemented. I've decided to take the approach of log4j.properties. I am still running ...
2
votes
3answers
33 views

Properly Exporting My Eclipse Project as a Runable Jar

Hello I am working on a project in Eclipse and am trying to export it so I can send it to some friends. I am clueless as to how to export so I watched some YouTube videos because that's all I could ...

1 2 3 4 5 334
15 30 50 per page