| Thread | Last Post | Replies |
|
| Run jar utility to unpack a file in a directory w/spaces? | 22 May 2007 20:13 GMT | 3 |
According to the jar syntax, I specify the archive from which the files are to be extracted: jar xvf <file> So -- what if the destination is c:\destination, but the source jar
|
| ConcurrentModificationException | 22 May 2007 19:58 GMT | 1 |
This seems to be a bit of a FAQ but I can't see how the usual answers apply in this case. As I understand it, this exception gets thrown either when another thread tries to modify an Iterator's collection, or when some other code attempts to modify a collection whilst an
|
| ConcurrentModificationException | 22 May 2007 16:56 GMT | 3 |
This seems to be a bit of a FAQ but I can't see how the usual answers apply in this case. As I understand it, this exception gets thrown either when another thread tries to modify an Iterator's collection, or when some other code attempts to modify a collection whilst an
|
| Maildir is not visible | 22 May 2007 14:03 GMT | 4 |
OK, this is probably another newbie question, but let me try. I have this testing program to copy all messages from one mbox folder to another maildir one: import java.util.Properties;
|
| Newbie question:Thread and while loop??? | 22 May 2007 05:27 GMT | 5 |
I am trying to pause a while loop for every 1000ms SimpleThread cc= new SimpleThread("testing"); while ( cc.sleep(100)){ .
|
| XML validation using DOM | 22 May 2007 01:44 GMT | 2 |
Hi... i am new to XML validation using XML... I am trying to Validate the XML document using XMLSchema.. The code i am using is ...but its giving Error like could any one tell me where i went wrong.....
|
| using an applet to verify a user's credentials | 21 May 2007 02:33 GMT | 5 |
I have a rather large set of web pages which are all linked and categorized. Some of them are ok for anyone to look at, other's are not. Is there a way that I can use a Java Applet to ask a user for their ID and check against a list of valid user id's and deny them access if it's ...
|
| How to do something every 2 minutes and know which 2 minute interval I have | 21 May 2007 02:04 GMT | 1 |
Consider the following code: package sim; import common.*; public class TrafficLightTester {
|
| Noughts and Crosses game | 19 May 2007 17:25 GMT | 16 |
My noughts and crosses game should stop you from playing on the same square twice, however it doesn't and a don't have a clue why. Here's the code. public class NoughtsAndCrosses
|
| JButton and Execute Windows Batch File | 19 May 2007 10:06 GMT | 1 |
Hi, I am new to Java and have devloped a small GUI, I would like to execute a windows batch file when a user clicks on the JButton associated with the batch file. I have attempted this task with the code below, please help.
|
| my slider ?? | 19 May 2007 04:50 GMT | 6 |
public void stateChanged(ChangeEvent evt){ JSpinner alarm = (JSpinner) (evt.getSource()); alarm.addChangeListener(this); alarm.setValue(alarm.getNextValue());
|
| deserilize question | 18 May 2007 23:32 GMT | 4 |
How do I check and stop the following message from appearing? c:\myproject\RegexTest.java:55: warning: [unchecked] unchecked cast found : java.lang.Object required: java.util.HashMap<java.lang.String,regextest.RegexRecord>
|
| jdk 1.5 question | 18 May 2007 22:23 GMT | 5 |
If I want to store data in object as serilazzble with access by name what should I use, map does not quite cut it as I have string key, string desc, string value and other attributes. I expect only about 15 to about 100 of these things. setting up ms sql express database seem too ...
|
| J2ME location API (JSR 179) on non-GPS devices - how realisitc? | 18 May 2007 10:17 GMT | 2 |
couple quick questions - I have been playing with the Location API - "in theory" it can use a number of sources to provide location based info but I wonder, in reality - how truly useful is it on non-GPS enabled devices?
|
| File transfer | 18 May 2007 08:13 GMT | 4 |
I'm just starting with java and I am trying to make an app that reads data from files (most are .TXT but not all) and then transfers the read files into another folder. I managed to make the program read the data now I just have to transfer the files. How can I do that? The
|