| Thread | Last Post | Replies |
|
| Parsing Xhtml document | 16 Jul 2007 21:12 GMT | 1 |
I have to parse an XHTML document (checking the presence of elements and attributes) and then eventually make some modifications. Which is the best way for this task? I look at the JAXP api. Are they the best ones for the purpose?
|
| Should I extends JComponent? | 16 Jul 2007 21:07 GMT | 6 |
Hi, I'm currently doing an application which users drag and drop graphical items on a canvas and drag them around the canvas. I have always wondered if I should extends JComponent or should I not to for this task.
|
| create a java class in runtime and use it | 16 Jul 2007 21:06 GMT | 1 |
Hello.. sorry for my english... I have a application APP and use JET for create Java classes with templates. I won use this Java clases in APP.
|
| library.path VS class.path | 16 Jul 2007 16:52 GMT | 1 |
we all know that "-D java.library.path=XXX" pass a library path to the JVM when it starts However what difference between "java.library.path" and "java.class.path" ? , I know that any jar files which the program
|
| Internationalization and enums | 16 Jul 2007 16:35 GMT | 8 |
It appears that Java enums are not of much use when Internationalization (I18n) is a concern. The values are hardcoded and can't be changed without recompiling. While variables could be added to include the I18n information in the enum class, all related methods and variables ...
|
| logging | 16 Jul 2007 16:35 GMT | 1 |
Hello, how is that i can create an object which can be used by the other classes in my project, so they can use the logging service... since I have used many classes extending JFrame, and JInternalFrame, i cannot extend from any other class else... so what would you recommend
|
| File Locking Question | 16 Jul 2007 15:25 GMT | 5 |
I am trying to use Java's FileLock class to synchronize writing to a file **across machines**. The file resides on a file server. Under Windows, it works perfectly (ie, only one machine at a time can gain access, the others wait,no clobbered file, everything is written in
|
| If you've coded in objective c and java before... | 16 Jul 2007 15:13 GMT | 3 |
I have a question about moving between java and objective c, sort of. I have this new serial device and the person who originally coded for serial to pc communication did so in objective c. From his code, to launch a counter, you have to type in 'a' and to disable the counter
|
| Visitor pattern: forcing to start with most general method? | 16 Jul 2007 12:45 GMT | 4 |
I’m in need of some design advice here. I have a hierarchy of classes representing logical formulas. I then have some visitors that do stuff on them. One of those visitors has the general method
|
| java web service engine (axis2 problems) | 16 Jul 2007 11:04 GMT | 3 |
I want to use web services engine in my j2ee project and I thought about : Axis2 JAX-WS
|
| Tomcat & MySQL Connection Problem | 16 Jul 2007 10:30 GMT | 1 |
I'm having some trouble connecting to a MySQL database from some Java code I have running in Tomcat. I'm positive my credentials are correct because I can access the DB using the command-line client. The DB is on the same machine as the Tomcat server and is listening on the
|
| How to catch everything? | 16 Jul 2007 04:25 GMT | 10 |
I have this code: public static Universe gLoadUniverse(String uvName) { try { System.out.println("I'm here");
|
| Compiling Works Fine [ Executing Itself Does Not] | 15 Jul 2007 23:26 GMT | 2 |
Hello, I'm executing some simple commands on JCreator, and I have all the code written out perfectly, and when i compile it, it says it's perfect(which it is). But, when i execute, nothing happens. Help would be appreciated.
|
| For GregorianCalendar, why isLeapYear(int year)? I think shoud be isLeapYear()! | 15 Jul 2007 22:28 GMT | 3 |
In GregorianCalendar, I don't understand why isLeapYear method needs an argument. e.g. Calendar cal = new GregorianCalendar(); cal.set(bla.. bla .. bla); //set time
|
| Associate action to button on an Eclipse RCP application | 15 Jul 2007 22:06 GMT | 1 |
I'm developing an Eclipse (3.3) RCP application and I have a problem. I created some custom actions like this: public class InsertTableRecordAction extends Action implements ISelectionListener, IWorkbenchAction {
|