| Thread | Last Post | Replies |
|
| problem with JSobject throwing exception | 19 Apr 2006 01:26 GMT | 4 |
hai all I am working in a project in whihc i need to modify the dom of a webpage and reload the page with modified dom. so for this i thought of working with JSObject and with applet
|
| Best data structure to use?? | 19 Apr 2006 01:22 GMT | 12 |
I am trying to find the best way to store an number of objects.
> The number of objects it may have to hold is 10, 000 however it is more likely only ever to need 5,000. > It will constantly having objects added and removed from it. > The objects don't have to be retrieved ... |
| Making software freely downloadable. | 19 Apr 2006 00:49 GMT | 2 |
I want to make my software (A Chatting software designed using Java) a freely downloadable software on the Internet. How to do this? Are there any websites which accepts such softwares?
|
| searching for a rule engine that compiles rules, no reflection | 19 Apr 2006 00:29 GMT | 5 |
Does anyone have heard of rules engines (could be really basic ones) that generates byte code to perform the evaluations instead of using reflection and interpretation? I have searched a while, but the docs are always about features, not so
|
| method dynamic parameter lists? | 19 Apr 2006 00:02 GMT | 5 |
I have the following framework code public static Vector getParameter(int i) { Vector v = new Vector(1); v.add(new Integer(i));
|
| help! compilation error in java | 18 Apr 2006 21:54 GMT | 3 |
i am getting this error when i compile my java code Exception in thread "main" java.lang.NoClassDefFoundError: D:\STest\TestClient/java plzz tell me what to do.. i hv included all possible library files in the
|
| algorithm to untangle a graph | 18 Apr 2006 20:47 GMT | 4 |
Does anyone know of a good algorithm to untangle a graph? Or to be more precise: Does anyone know of a good algorithm that will determine the arrangement of vertices and edges of a graph such that the number of edges that cross is minimized?
|
| imageObserver -- still don't understand | 18 Apr 2006 19:45 GMT | 1 |
I've read all I can about what imageObserver is and how to implement/use it. After several hours of reading, I am still failing. Here is a piece of my code - any help, pointer, or comments is appreciated because as of right now, it's not fuctioning at all.
|
| Generate an XML in Java using an XML Schema | 18 Apr 2006 19:02 GMT | 1 |
Is it possible to create an XML in Java using an XML Schema? Is the XML Schema just for validation? Thanks! V
|
| Question regarding AspectJ wildcards | 18 Apr 2006 18:56 GMT | 2 |
concerning AspectJ, I was wondering about difference between the * and .. wildcards. In an exercise for a software engineering class, we had that example where an aspect had to be provided, which would trace every method execution in a certain program (disregarding anything
|
| JavaMail API Closing folder causes OutOfMemory | 18 Apr 2006 18:52 GMT | 3 |
I am getting an OutOfMemory error when I try to call close on Folder with expunge set to true. This is happening when I am having a large a number of e-mails with large attachments to be expunged.
|
| Getting the class from a type parameter | 18 Apr 2006 18:37 GMT | 1 |
If I have a Class parameter, I can get the type of the parameter and use it. void method(Class<T> clazz) {
|
| Loading images on a square on grid. | 18 Apr 2006 18:37 GMT | 3 |
The following is code for a grid within an Applet. public void drawBox(Graphics g){ for(int i=10;i<=350;i+=40){ g.drawLine(i,10,i,330);
|
| is this correct use of synchronized? | 18 Apr 2006 18:22 GMT | 16 |
midp 2.0 Java SE 5.0 J2ME version 2.2 Is this correct use of synchronized?
|
| creating a collection of java files | 18 Apr 2006 18:09 GMT | 1 |
i am working on a messenger project. i hv a collection of java files.. i dont know much of java. can anyone plz tell me how to combine all these files into a single project? i am getting a lot of errors if i try to compile a single file including
|