| Thread | Last Post | Replies |
|
| alternative to lua | 02 Apr 2007 17:52 GMT | 6 |
I'm looking for an alternative to lua. My problem is that I need to send scripts to multiple clients, where some are developed in c++ and some in Java. I would like to find an off-the-shelf scripts interpretator that I can use for both clients.
|
| LinkedList Implementation question | 02 Apr 2007 16:40 GMT | 5 |
I know that Java implements their LinkedLists as a doubly-linked list. Is there any documentation, though, which states whether only a head sentinel is used, or both head and tail sentinels. I'm planning on using the LinkedList as a Queue that will have
|
| [signed applet] certification authority | 02 Apr 2007 15:38 GMT | 3 |
I have a signed applet (signed myself with jarsigner.exe). It works fine but the users get a warning message before accepting the applet to execute. Next step, is to have my certificate trusted by Verisign or other
|
| CallableStatement problem | 02 Apr 2007 15:04 GMT | 6 |
I am trying to insert a record into my database using 2 stored procedures. These are pasted below. The code that I am using in the java program is as follows: // Create CallableStatement object
|
| Using DataSource object with JNDI | 02 Apr 2007 14:10 GMT | 2 |
I am working on this exercise and would be thankful if somebody could point me in the right direction to tackle it. Create a servlet that displays a list of customers (From the customer table of the database). Use the HTML table to organize the display.
|
| immutable object that holds Objects | 02 Apr 2007 11:09 GMT | 2 |
I have an immutable object that needs to hold (Among the rest) two "Object" objects for all the mutable objects my object holds I create a "defensive copy" but what can I do with the "Object" objects? can I somehow clone
|
| working with lists | 02 Apr 2007 10:52 GMT | 6 |
I use Vector or ArrayList to store my objects. However, sometimes I need to sort those lists with considering just one value. Is that possible? For example:
|
| enum/generics typesafe getter for generic types | 02 Apr 2007 10:52 GMT | 7 |
I thought it might be possible to have just one getter for a variety of Object return types If I pass in an enum which knows the Class type of the value it keys, then perhaps I can use generics to fix the return type.
|
| About making a gui as a plugin in eclipse | 02 Apr 2007 04:20 GMT | 2 |
I have developed a simple application using swing. Now i want to make it as a plugin in Eclipse. Can anyone tell me how can i do this? As i dont know much about plugin development.
|
| Java applet break line in JTextField | 02 Apr 2007 03:54 GMT | 2 |
I'm designing an applet that it is now almost funcional. It is a client version of the program that requests a list of items, displayed in strings, on an JTextField on the applet. My question is, when i receive the text it displays everything on the same line, altought the
|
| how to clone an array | 02 Apr 2007 02:33 GMT | 9 |
Then, i've a method: private String[] creaLista(ResultSet cursore, String type) this return me an array of string. Now, since i need to use this method many time in my class always with
|
| serialVersionUID - can it be ignored? | 02 Apr 2007 00:30 GMT | 2 |
Somehow I managed not to specify serialVersionUID in some Serializable classes, and now have saved data with multiple logically-compatible but serialVersionUID-incompatible formats. I have since changed the code to specify a serialVersionUID, which will
|
| ParserCallback - Html Parser in Java | 02 Apr 2007 00:30 GMT | 1 |
I have problem, my class parse html document work pretty good, but if in html document find "<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">" then return error. Why ? import javax.swing.text.html.*;
|
| terminiating a thread when main throws an error | 01 Apr 2007 23:12 GMT | 4 |
I am sure there is a simple answer to how to terminate a thread when main throws an error. if it matters, all main does is instantiate its object so I can do non- static stuff. The thread implements runnable and the constructor for
|
| What sort of documentation is most useful for a java application? | 01 Apr 2007 20:39 GMT | 6 |
I'm interested in other's experiences as to what types of documentation for java are most useful. Obviously Java docs are very common and very widely used. Apart from java docs however what do people find useful?
|