| Thread | Last Post | Replies |
|
| Where in the world are you calling from? | 16 May 2008 15:49 GMT | 22 |
I wrote a pair of Applets to compute sales tax. I did some looking at web hit stats and discovered the Canadian Tax calculator is my most popular piece of software. It would be nice if it could automatically default configure itself to the province/state of the
|
| (File)OutputStreams and their usage | 16 May 2008 15:17 GMT | 10 |
Is this (see code) the correct way of handling a FileOutputStream? Specific question are in the code. Thanks for your answers. Philipp public void load(File file){ OutputStream os;
|
| Java IDE | 16 May 2008 14:40 GMT | 44 |
What is the best IDE to use when developing Java applications?
|
| Does using a CMS to manage security to an applet make sense? | 16 May 2008 14:14 GMT | 4 |
I want a website that is a CMS, has usernames, password. The "normal" security system stuff. I know there are a multitude, just assume that people create accounts and the credentials are stored in a MySQL database.
|
| what's the referer of an applet ? | 16 May 2008 13:58 GMT | 4 |
I have a web page http://somehost/somewhere.html which contains an applet (the applet jar is now signed). <APPLET CODE=myApplet24.class ARCHIVE=myApplet24.jar WIDTH=768 HEIGHT=850></APPLET>
|
| Is it bad to connect to a database via an applet? | 16 May 2008 13:55 GMT | 9 |
I was trying to figure out how to connect an applet to a mysql database. I only found very old articles on it. It seems no one does this. So, now I am stuck. I want to write a game in an applet that utilizes a database. I don't want to use Flash and php, which I keep
|
| Java Arrays.sort throws exception | 16 May 2008 04:51 GMT | 39 |
When the number of elements gets above around 2700 the Arrays.sort inside the Collections.sort throws an exception: java.lang.ArrayIndexOutOfBoundsException Any ideas?
|
| When writing applet do you start out as an application or applet? | 16 May 2008 03:37 GMT | 7 |
If you are creating an application that is going to be run in an applet, do you start out creating a regular application an moving it to an applet or just creating it as an applet, beginning to end. Size of project is moderat to large. Thanks.
|
| operator overloading | 16 May 2008 02:49 GMT | 170 |
I don't find any document that say if the operator overloading will be a new feature of the Java 7 Do anyone know if it there will be? Thanks
|
| JWS with restricted windows user accounts | 16 May 2008 02:02 GMT | 8 |
I manage a Java app that I've released using JWS. Some of my users work in networks where they use windows and are not allowed to install anything. I'm not sure if JWS is affected by these restrictions and I have
|
| Mac WORA | 16 May 2008 01:39 GMT | 11 |
I wrote an Applet the Canadian Tax Calculator at http://mindprod.com/applet/canadiantax.html run as Applet http://mindprod.com/products1.html#CANADIANTAX download I got email from a Mac user this display is scrambled when they run it
|
| Custom JScrollPane - Double JScrollBars | 15 May 2008 16:57 GMT | 15 |
Is there any way I can customize a JScrollPane and instead of one horizontal JScrollPane it would show two? Can you point me somewhere? Thank you.
|
| Simple array question | 15 May 2008 13:58 GMT | 7 |
How do I find the number of rows in a multi dimensional array? The number of columns can quite easily be found with A[0].length, but Java unlike Matlab does not allow an expression like A[][0].length . I suppose that there is a way around it.
|
| Memory Leak Problem | 15 May 2008 13:07 GMT | 6 |
I have a crawler program, it fetches html on the internet and a parser will parse the page. Because of slow networks, I use many robots to crawl the pages and one parser.
|
| Virtual files | 15 May 2008 06:02 GMT | 5 |
I have written quite a bit of code that loads an entire file into RAM then does indexOf, substring, regexes etc, working on the giant String, often creating a new giant String and writing it out. I wondered if anyone had developed some sort of package to allow such
|