Java is a programming language and runtime environment which allows programs to run unchanged on most platforms. Java was originally developed by James Gosling at Sun Microsystems (which has since merged into Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java ...

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

179
votes
18answers
19k 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 ...
248
votes
2answers
116k views

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

This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
326
votes
28answers
77k 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 ...
17
votes
2answers
4k views

Gui problem after rewriting to MVC

I'm practicing MVC style programming. I have a Mastermind game in a single file, working with no problems (maybe apart of the fact that "Check" button is invisible at start). ...
30
votes
2answers
23k views

How to upload files in 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 ...
68
votes
4answers
11k 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 ...
174
votes
19answers
72k views

Overriding equals and hashCode in Java

What issues / pitfalls must be considered when overriding equals and hashCode?
17
votes
5answers
7k 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 ...
184
votes
19answers
188k views

How to call SOAP web service with 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 ...
63
votes
3answers
9k 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, ...
323
votes
23answers
178k 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 ...
27
votes
3answers
4k views

Look and feel in java

I am developing an desktop application for my personal use. I use Java as programming language and I use Swing to develop GUI. I need some beautiful look and feel. How can I do it in Java or with any ...
12
votes
5answers
15k 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?
6
votes
4answers
867 views

About swing and JTable

I want to add JTable into JPanel whose layout is null. JPanel contains other components. I have to add JTable at proper position. Please answer me about it. Am not much aware about Java.
56
votes
9answers
9k 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 ...
72
votes
5answers
22k 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)?
56
votes
11answers
6k views

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

As the title says. 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 ...
8
votes
1answer
399 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 ...
28
votes
6answers
10k 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 ...
54
votes
4answers
7k 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 ...
21
votes
8answers
20k 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... ...
350
votes
9answers
48k 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 ...
89
votes
17answers
39k views

Efficient way to implement singleton pattern in Java

Efficient way to implement singleton pattern in Java?
23
votes
4answers
988 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 ...
3
votes
3answers
2k views

How to rotate an image gradually in Swing?

I have an image I am rotating when the user clicks on a button. But it is not working. I would like to see the image rotating gradually to 90 degrees till it stops but it doesn't. The image must ...
99
votes
10answers
33k views

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

If I have a Java source file or class file (*.class). How can I convert it to an .exe file? I also need an installer for my program. Is there is an open source program that can do that?
77
votes
9answers
28k 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 ...
169
votes
5answers
71k 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 ...
70
votes
8answers
43k views

Converting JSON to Java

I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson(). Below is an example of what the string ...
6
votes
3answers
4k 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 ...
113
votes
8answers
97k views

Java and SQLite

I'm attracted to the neatness that a single file database provides. What driver/connector library is out there to connect and use SQLite with Java. I've discovered a wrapper library, ...
56
votes
10answers
55k views

Trusting all certificates using HttpClient over HTTPS

Recently posted a question regarding the HttpClient over Https (found here). I've made some headway, but I've run into new issues. As with my last problem, I can't seem to find an example anywhere ...
56
votes
5answers
91k 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 ...
66
votes
16answers
81k views

Removing HTML from a Java String

Is there a good way to remove HTML from a Java string? A simple regex like replaceAll("\\<.*?>","") will work, but things like &amp; wont be converted correctly and non-HTML between ...
53
votes
11answers
48k 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 ...
4
votes
5answers
1k views

Using already created Database with Android

I have already created an sql lite database. I want to use this database file with my android project. I want to bundle this database with my application. Instead of application to create new ...
27
votes
5answers
2k views

If profiler is not the answer, what other choices do we have?

After watching the presentation "Performance Anxiety" of Joshua Bloch, I read the paper he suggested in the presentation "Evaluating the Accuracy of Java Profilers". Quoting the conclusion: Our ...
7
votes
3answers
2k 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 ...
2
votes
2answers
2k 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 ...
178
votes
32answers
209k 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 ...
35
votes
8answers
63k views

Https Connection Android

I am doing a https post and I'm getting an exception of ssl exception Not trusted server certificate. If i do normal http it is working perfectly fine. Do I have to accept the server certificate ...
146
votes
15answers
140k views

Generate MD5 hash in Java

Is there any method to generate MD5 hash of a string in Java?
61
votes
14answers
49k views

read/write to Windows Registry using Java

Is it possible to read/write to windows registry using java?
14
votes
4answers
19k views

Populating child dropdownlists in JSP/Servlet

Suppose I am having three dropdownlist controls named dd1, dd2 and dd3. The value of each dropdownlist comes from database. dd3's value depends upon value of dd2 and dd2's value depends on value of ...
101
votes
13answers
53k views

Connection pooling options with JDBC: DBCP vs C3P0

What is the best connection pooling library available for Java/JDBC? I'm considering the 2 main candidates (free / open-source): Apache DBCP - http://commons.apache.org/dbcp/ C3P0 - ...
13
votes
6answers
10k views

Capturing stdout when calling Runtime.exec

When experiencing networking problems on client machines, I'd like to be able to run a few command lines and email the results of them to myself. I've found Runtime.exec will allow me to execute ...
188
votes
13answers
81k views

Any good graphing packages for Android? [closed]

With Android removing the Swing and AWT libraries from Java, I was wondering what solutions have been developed to display simple bar histograms, line graphs and other simple data visualizations in ...
445
votes
27answers
163k views

When do you use Java's @Override annotation and why? [closed]

What are the best practices for using Java's @Override annotation and why? It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there ...
106
votes
16answers
76k 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 ...
52
votes
3answers
30k 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 ...

1 2 3 4 5 1265