Java is a high-level, platform-independent, object-oriented programming language originally developed by Sun Microsystems. Java is currently owned by Oracle, which purchased Sun in 2010.
0
votes
0answers
8 views
Beginner Scoring program button development in Java [migrated]
I'm trying to add a "green team" to an example scoring GUI I found online. For some reason, the code compiles, but it runs with only the original two teams. I've tried playing around with the ...
4
votes
5answers
191 views
Building a website, want to use java
I'd like to make a simple-ish website that is essentially a small game. Key strokes are to be processed and sent to a server (already acquired and should support SQL and JSP, I believe) which then ...
0
votes
0answers
9 views
Removing or Hiding JTable drag selection outline
When performing a drag and drop on a JTable there is an outline of the selected cell that appears while dragging. How can I override that behavior and not show anything but a special cursor?
-2
votes
2answers
95 views
The road to become a programmer [closed]
I'm looking for a 'career' change, I don't actually have a career at the moment since I haven't been able to find a job since I graduated with a degree in Materials Engineering. One of my loves has ...
0
votes
0answers
30 views
Types of semantic bugs, logic errors [closed]
I am a PhD student and currently focus on automatically finding instances of new types of bugs in (Java) programs that cannot be found by existing tools like FindBugs. The existing tool currently is ...
3
votes
1answer
166 views
Is it correct that Java Applets can do hardware acceleration while Flash can't?
I hope you can confirm or disprove whether I understand this correctly. I know for certain that Java Applets can have hardware acceleration and I wonder if this is the only known way to have graphics ...
-2
votes
0answers
68 views
A correct way for JAVA age calculation? [closed]
I have already a Java calculation of age method. I have a Person Class where I have the method and I need to ask the current time each time the method is called. All I could do is make age a static ...
-1
votes
0answers
112 views
Getting back into Java [closed]
I have been away from programming for a while on order to raise a family. I had a Sun certification for JAVA 2 in 2000. (I know it was ages ago).
I 'd like to get back into Java programming, which ...
-1
votes
0answers
25 views
Creating VideoRecorder App in Blackberry? [closed]
In creating a Video Recorder App, When I try to invoke
String encodingString = System.getProperty("video.encodings");
encodingString is null? what could be the issue? Please advice.
6
votes
5answers
208 views
Everything has an Interface [closed]
Possible Duplicate:
Do I need to use an interface when only one class will ever implement it?
I am taking over a project where every single real class is implementing an Interface. The ...
-5
votes
1answer
56 views
Start of Career: with Java or PHP [closed]
I am very new to this programming career. I am now doing job on PHP & MySQL (joined before 6 months) and working on e-commerce project. Simultaneously I am learning JAVA also just completed Adv. ...
-5
votes
0answers
27 views
Ozeki NG SMS Gateway [closed]
I am planning to use Ozeki NG SMS Gateway for an SMS sending site that I'm developing. Has anyone tried it? Does it really provide 500 message per second capacity? And can it really be used with Java ...
-2
votes
0answers
19 views
why client can not receive message from server (java) [migrated]
I have just started learning java. I modified the client side code for a server/client communication program, by creating two threads for the client side, main thread for receiving user's input, and ...
-1
votes
0answers
58 views
Is jumping to PHP (LAMP) from Java good? [closed]
I'm getting an opportunity with a better company to move from my Java/J2EE domain to LAMP based development. Is such a career move good enough after around 3 years of J2EE based development in ...
0
votes
0answers
11 views
Question about main(String[] args) [migrated]
I'm new to programming, and I'm using java. Here's a program I wrote:
class HelloApp {
static String hi;
public static void main(String[] args) {
int length = args.length;
...