| Thread | Last Post | Replies |
|
| Create an executable file | 29 Oct 2004 14:45 GMT | 1 |
Hi!! I?m very novice and I would like to create an executable from a set of classes. My application should be an executable file: application.exe Thanks.
|
| simple IF question if (newplayer == goalkeeper) {throw error} | 29 Oct 2004 12:55 GMT | 23 |
if (p2,p3,p4==Goalkeeper) { throw new IllegalArgumentException("You cannot put a goalkeeper in an outfield position");
|
| exception handling problem | 29 Oct 2004 10:23 GMT | 11 |
public void setPlayerHeight(int height_in_cms) throws IllegalArgumentException { Integer dwarf = new Integer(70);
|
| sorting an ArrayList by int | 29 Oct 2004 10:22 GMT | 31 |
I need to sort a football league by the number of points each club has. The clubs are objects stored in an ArrayList called 'league'. Each club has a field for the number of points they have. Can someone suggest the best way to sort this arraylist and output it to
|
| Help with download please | 29 Oct 2004 08:52 GMT | 5 |
I am starting to learn Java, but I am stuck on the software. I am reading "Java 2 for dummies", and it says I need the file J2SE SDK software, however I can only find the J2SE 5.0 JDK package at the sun site. Is the JDK the same as the SDK.??? thanks
|
| Java application not interactive with desktop | 29 Oct 2004 08:15 GMT | 2 |
running java 1.4.2 on a Windows 2000 Server. There are 2 ways conncecting to the machine: 1) PC Anywhere 2) Terminal Session
|
| I/O intensive Java benchmarks | 29 Oct 2004 02:44 GMT | 1 |
I am looking for open source Java applications that do a LOT of I/O and are likely to incur a lot of page faults. Does anyone have any suggestions? Thanks, Vasanth
|
| generate HTML | 28 Oct 2004 22:52 GMT | 2 |
I have a logfile ( text), containing links, that needs to be generated into HTML. Any advice on how I should proceed? //Mikael
|
| rmi question | 28 Oct 2004 18:57 GMT | 1 |
I am currently trying to develop an RMI chat room. I have the server sending/receiving messages to all clients plus a private chat facility. I am just writing to ask if anyone knows how I could go about allowing
|
| Mac problems with Java | 28 Oct 2004 18:42 GMT | 3 |
I have a program which displays some results in a JFrame window with a JPanel and a JTextArea. I can confirm that everything runs fine on Sun's Windows JVM. Is there any reason why it wouldnt work on a Mac? My code is below for setting up the JFrame. Also, under Linux my ...
|
| Sorting Strings | 28 Oct 2004 13:46 GMT | 2 |
What is the best way to sort an array of strings, by that i mean, sort each individual string alphabetically, and maybe then have two arrays, one with the sorted word and the other with the original word, so that they can be cross referenced. At the moment I am considering using ...
|
| strange problem - different encoding linux windows in xslt | 28 Oct 2004 10:16 GMT | 2 |
Hi to all, my program java applies some trasforms xslt to a file xml using the attribute encoding = "ISO-8859-1": it work fine under windows xp, but if I run the program on a pc with redhat ES the file output it contains '?'
|
| Regular expressions question! | 28 Oct 2004 09:36 GMT | 5 |
I'm trying to parse HTML tables, so I need to find following pieces of text! <table .....anything between this ..... /table> and <tr ........ /tr> and of course
|
| run process (Java/Shell) every 10 minutes | 28 Oct 2004 09:30 GMT | 3 |
I need to run a shell script or a java app every 10 minutes for several hours starting at the specified time and ending at the specified time. I can schedule a cron job for it but it would be about 40 to 50
|
| unused methods and classes | 28 Oct 2004 07:35 GMT | 6 |
I suppose that question has been already posted before but I don't find a tool that answered my need. I would like to clean my code by looking for unused methods -in particular in interfaces- and unused classes even they are public. Do you know if some tools (free or commercial) ...
|