Java is an object-oriented language and runtime environment (JRE). Java programs are platform independent, because they are compiled to bytecode and their execution is handled by a Virtual Machine called the Java VM or JVM.

learn more… | top users | synonyms (5) | java jobs

395
votes
21answers
47k views

How to avoid Java Code in JSP-Files?

I'm new to Java EE and I know that something like the following three lines <%= x+1 %> <%= request.getParameter("name") %> <%! counter++; %> is an oldschool way of coding and in ...
313
votes
22answers
248k views

How do I compare strings in Java?

I've been using the == operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug. Is == bad? When should it ...
61
votes
4answers
6k views

The Use of Multiple JFrames, Good/Bad Practice?

I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
721
votes
34answers
186k views

Is Java “pass-by-reference”?

I always thought Java was pass-by-reference; however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
520
votes
3answers
221k views

How to use java.net.URLConnection to fire and handle HTTP requests?

URLConnection is pretty often asked here and the Oracle tutorial is too concise about it. So how do I use it to fire and handle HTTP requests? Are there other hints and best practices on this that ...
80
votes
6answers
5k views

Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing?

Several times I've been criticized for having suggested the use of the following methods: setPreferredSize setMinimumSize setMaximumSize on Swing components. I don't see any alternative to their ...
114
votes
3answers
83k views

How to upload files to server using JSP/Servlet?

How can I parse an uploaded file using Apache Common FileUpload? I tried this: FileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(factory); List ...
177
votes
4answers
36k views

How do servlets work? Instantiation, session variables and multithreading

Suppose, I have a webserver which holds numerous servlets. For information passing among those servlets I am getting the servlet context and setting session variables. Now, if 2 or more users send ...
105
votes
17answers
107k views

Java String.equals versus ==

This code separates a string into tokens and stores them in an array of strings, and then compares a variable with the first home ... why isn't it working? public static void main (String... ...
49
votes
7answers
17k views

How to use an existing database with an Android application [duplicate]

I have already created an SQLite database. I want to use this database file with my Android project. I want to bundle this database with my application. Instead of creating a new database, how can ...
349
votes
23answers
146k views

Overriding equals and hashCode in Java

What issues / pitfalls must be considered when overriding equals and hashCode?
41
votes
2answers
10k views

GUI not working after rewriting to MVC

I'm practicing MVC style programming. I have a Mastermind game in a single file, working fine (maybe apart of the fact that "Check" button is invisible at start). http://paste.pocoo.org/show/226726/ ...
22
votes
2answers
9k views

JSTL in JSF2 Facelets… makes sense?

I would like to output a bit of Facelets code conditionally. For that purpose, the JSTL tags seem to work fine: <c:if test="${lpc.verbose}"> ... </c:if> However, I'm not sure if ...
109
votes
10answers
14k views

How do I write a correct micro-benchmark in Java?

How do you write (and run) a correct micro-benchmark in Java? I'm looking here for code samples and comments illustrating various things to think about. Example: Should the benchmark measure ...
12
votes
6answers
5k views

How to add JTable in JPanel

I want to add JTable into JPanel whose layout is null. JPanel contains other components. I have to add JTable at proper position.
56
votes
5answers
27k views

How to use Servlets and Ajax?

I'm very new to web apps and Servlets and I have the following question: Whenever I print something inside the servlet and call it by the webbrowser, it returns a new page containing that text. Is ...
47
votes
1answer
7k views

How to choose the right bean scope?

I noticed that there are different bean scopes like: @RequestScoped @ViewScoped @SessionScoped @ApplicationScoped What is the purpose of each? How do I choose a proper scope for my bean?
174
votes
13answers
76k views

How can I convert my Java program to an .exe file?

If I have a Java source file (.java) or class file (.class). How can I convert it to an .exe file? I also need an installer for my program. Is there an open source program that can do that?
68
votes
8answers
19k views

Why JSF calls getters multiple times

Let's say I specify an outputText component like this: <h:outputText value="#{ManagedBean.someProperty}"/> If I print a log message when the getter for someProperty is called and load the ...
499
votes
20answers
277k views

A better Java JSON library? [closed]

Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
333
votes
36answers
336k views

How to sort a Map<Key, Value> on the values in Java?

I am relatively new to Java, and often find that I need to sort a Map on the values. Since the values are not unique, I find myself converting the keySet into an array, and sorting that array through ...
165
votes
20answers
83k views

What is an efficient way to implement a singleton pattern in Java?

What is an efficient way to implement a singleton pattern in Java?
55
votes
7answers
77k views

How do I import the javax.servlet API in my Eclipse project?

I want to develop with Servlets in Eclipse, but it says that the package javax.servlet cannot be resolved. How can I add javax.servlet package to my Eclipse project?
201
votes
3answers
92k views

Download a file with Android, and showing the progress in a ProgressDialog

I am trying to write a simple application that gets updated. For this I need a simple function that can download a file and show the current progress in a ProgressDialog. I know how to do the ...
257
votes
20answers
232k views

How to call SOAP web service in Android

I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
160
votes
5answers
61k views

What is the difference between JSF, Servlet and JSP?

Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
63
votes
4answers
20k views

Java Look and Feel (L&F)

I am developing a desktop application with Java Swing for my personal use.I am in need of some beautiful Look and Feel for my application. How can I do it using Java or a 3rd party API?
116
votes
4answers
22k views

Design Patterns web based applications

I am designing a simple web based application. I am new to this web based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, ...
139
votes
10answers
58k views

In Java, what is the best way to determine the size of an object?

For example, let's say I have an application that can read in a CSV file with piles of data rows. I give the user a summary of the number of rows based on types of data, but I want to make sure that ...
648
votes
10answers
107k views

Examples of GoF Design Patterns [closed]

I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns, preferably in Java's core libraries? Thank ...
413
votes
22answers
494k views

Generating random number in a range with Java

I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
98
votes
6answers
16k views

What are the pros and cons of the leading Java HTML parsers?

Searching SO and Google, I've found that there are a few Java HTML parsers which are consistently recommended by various parties. Unfortunately it's hard to find any information on the strengths and ...
117
votes
17answers
75k views

read/write to Windows Registry using Java

Is it possible to read/write to windows registry using java?
12
votes
3answers
5k views

Can a progress bar be used in a class outside main?

Right now, my main just calls a gui with 10 rows. Based on how many of those rows have text, 1 of 9 classes is called (two rows must have text). The called class performs calculations that I'd like ...
23
votes
1answer
9k views

Swing: Obtain Image of JFrame

How do I obtain a java.awt.Image of a JFrame? I want to obtain a screen shot of a JFrame (for later use within my application). This is presently accomplished using the robot to take a screen shot ...
496
votes
13answers
108k views

What is a serialVersionUID and why should I use it?

Eclipse issues warnings when a serialVersionUID is missing. The serializable class Foo does not declare a static final serialVersionUID field of type long What is serialVersionUID and why is ...
88
votes
9answers
16k views

Java web development, what skills do I need? [closed]

I want to learn, at least at a basic level, how to build Java web applications (coming from a .NET background). Meaning, I would like to be able to build, deploy a simple CMS type application from ...
159
votes
12answers
144k views

Java how to: Generic Array creation

Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety? public class GenSet<E> { private E a[]; public ...
21
votes
4answers
11k views

Creating a custom button in Java with JButton

I am trying to create a button that has a custom shape (hexagon), but otherwise acts like a normal JButton would (that is, works with an ActionListener). I have created a class that extends ...
8
votes
2answers
4k views

Socket using in a swing applet

I should made a server & client in Java,based on Swing and gui.I neeed to make somehow a socket that will go from the server to the client and from the client to the server, and will pass some ...
295
votes
6answers
118k views

How to discover memory usage of my application in Android

I would like to know how I can find the memory used on my Android application, programmatically. I hope there is a way to do it. Plus I would like to understand how to get the free memory of the ...
200
votes
16answers
337k views

How to round a number to n decimal places in Java

What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard ...
221
votes
4answers
86k views

Why is Java Vector class considered obsolete or deprecated?

Why is Java Vector considered a legacy class, obsolete or deprecated? Isn't its use valid when working with concurrency? And if I don't want to manually synchronize objects and just want to use a ...
82
votes
14answers
54k views

Cannot refer to a non-final variable inside an inner class defined in a different method

Edited: I need to change the values of several variables as they run several times thorugh a timer. I need to keep updating the values with every iteration through the timer. I cannot set the values ...
113
votes
7answers
151k views

Java 256-bit AES Password-Based Encryption

I need to implement 256 bit AES encryption, but all the examples I have found online use a "KeyGenerator" to generate a 256 bit key, but I would like to use my own passkey. How can I create my own ...
75
votes
3answers
30k views

Differences between action and actionListener

What is the difference between action and actionListener, and when should I use action versus actionListener?
3
votes
3answers
3k views

Load Icon Image Exception

I am having a error for my GUI. Trying to set title bar icon then be included in a Runnable JAR. BufferedImage image = null; try { image = ...
242
votes
16answers
180k views

How to create a Java String from the contents of a file

I've been using this idiom for some time now. And it seems to be the most wide-spread, at least in the sites I've visited. Does anyone have a better/different way to read a file into a string in ...
262
votes
20answers
259k views

Generate MD5 hash in Java [duplicate]

Possible Duplicate: Getting a File’s MD5 Checksum in Java Is there any method to generate MD5 hash of a string in Java?
58
votes
5answers
58k views

getResourceAsStream() vs FileInputStream

I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did ...

1 2 3 4 5 995