| Thread | Last Post | Replies |
|
| problem with awt.Color | 20 Dec 2003 05:28 GMT | 3 |
It's my first application with JFrame. I have a problem with changing colors in my application. Frame name is: JFrame1. It contains a JPanel class named jPanel1.
|
| waiting message | 20 Dec 2003 05:26 GMT | 2 |
I'm calling remote methods on the server, where database queries are executed. sometimes it takes a while to get the results back to the client side. I'm trying to display JDialog with message to wait, but while dialog
|
| record from microphone | 20 Dec 2003 04:54 GMT | 2 |
Can I record voice via microphone... (what class???) ...and after send the voice to server? (With a Java Applet)
|
| equals and hashCode | 20 Dec 2003 00:35 GMT | 2 |
From Object's JavDoc:
> If two objects are equal according to the equals(Object) > method, then calling the hashCode method on each of > the two objects must produce the same integer result. |
| Changing the Classpath at runtime | 19 Dec 2003 23:06 GMT | 8 |
I need to be able to change (really add to) the classpath after my main application is running. Can anyone tell me how to do this? Any help would be appreciated Brian Andersen
|
| I need java floppy sized | 19 Dec 2003 22:39 GMT | 6 |
I have a problem in that I do not have the internet and I have no means of splitting files on the machine I do have for downloading archives. This means that I am relying on split files already online which are less than 1.4mb in size.
|
| recast a superclass attribute | 19 Dec 2003 21:34 GMT | 4 |
class MySuper { Date date; } class MySub extends MySuper {
|
| Converting Text to Image | 19 Dec 2003 20:51 GMT | 3 |
Does anyone know of a tool for Converting Text to images so that I can still have image buttons on my site while having it localised? Thanks, Andoni.
|
| JSR014 prototype and AssertionError | 19 Dec 2003 20:38 GMT | 1 |
take the following file Bug.java: import java.util.*; public final class Bug<Item> { public Bug(Collection<Item> items) {
|
| java performance w2k vs NT4 | 19 Dec 2003 18:58 GMT | 1 |
I've been developping a Java application using sun's 1.4.1 on my NT4 box. It's a financial application that retrieves market data in real time, displays it in JTables, do some computations, and from which you can
|
| List backed by file system | 19 Dec 2003 18:50 GMT | 1 |
I have a data structure that is currently implemented using the List interface. My data consists of a collection of Objects ordered within a list. I will soon start running into memory problems, so I need to cache this all to disk. Ideally I would have a List implementation
|
| class$ can't be compiled | 19 Dec 2003 18:28 GMT | 4 |
It could be compiled in eclipse, but when I tried to compile it through maven, it said "class$ is reserved for internal use". How to solve this problem? Thanks.
|
| jusb | 19 Dec 2003 18:10 GMT | 2 |
hey everyone, is anyone running the jsb package sucessfully on linux? I am running Redhat 8 and have compiled in ehci device support, but for some reason I'm getting an exception:
|
| XMLEncoder can clobber arrays | 19 Dec 2003 17:12 GMT | 7 |
My "gotcha" for the day... java.beans.XMLEncoder writes a bean to a stream in XML form. But be careful if there are static arrays! Here's what can go wrong. First, a tiny class that "holds" an array of int's:
|
| Optimising the downloading of a large csv file into a string | 19 Dec 2003 17:07 GMT | 9 |
I need to download large CSV files into String objects for processing. Unfortunately my download routine seems to be exceptionally slow. I believe it's because of the following line ret+="\n" + line;
|