| Thread | Last Post | Replies |
|
| Please, short question on Java3D (around fast help, please) | 10 May 2007 19:59 GMT | 1 |
I learn newly Java and Java3D programming and I have short questions on it. Because of this I search after fast help with it. I hope to get help here.
|
| AutoTransaction rollback? | 10 May 2007 19:35 GMT | 7 |
Hello to all programmers out there. I am currently developing a Java web application using Servlets / JSP. I was just wondering how I would go about implementing complete commit or complete rollback. For eg. I have a controller which depending on
|
| JVMTI/JNI and JVMTI_ERROR_INVALID_ENVIRONMENT | 10 May 2007 17:51 GMT | 2 |
I write a sample code to get some information via JVMTI, but error JVMTI_ERROR_INVALID_ENVIRONMENT is always here. HelloWorld.java, class HelloWorld {
|
| encryption in Oracle, decryption in Java | 10 May 2007 17:49 GMT | 1 |
I encountered a problem not sure how to solve it. please help if possible. in oracle9 I do a simple encryption (using DES) that gives me the following RAW:
|
| JSF+datatable+Hibernate | 10 May 2007 16:59 GMT | 4 |
I'm tryint to display the rows of a table usign JSF framework, but I receive the following error javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class:
|
| numeric issue: 0.95 - 0.05 == 0.8499996 | 10 May 2007 15:02 GMT | 10 |
Why ? Precisely I proceede as follows: float e = 1.0f; e -= 0.05f;
|
| Attach JTextField with String property | 10 May 2007 15:01 GMT | 2 |
I would like to bind a JTextField with a String in such a way that an update of JTextField content results in a modification of the String. Actually it's no more no less than ui-model relation. I searched around JTextField(Document) constructor, PlainDocument...
|
| Let thread wait till memory is available | 10 May 2007 14:59 GMT | 3 |
a basic question: i have a memory consuming encoding process which runs in its own thread. To preseve OutOfMemory errors when a lot of those treads are running,
|
| RC2 java source code | 10 May 2007 12:53 GMT | 1 |
Does anyone have the source code for the RC2 algorithm written in Java? Thanks, Marc
|
| Undo in graphical application | 10 May 2007 12:33 GMT | 1 |
I've created a small application that allows the user to draw things and put things on the screen (polygons, circles, arcs, etc.). Now I want to implement an undo operation. The question is: does Java offer any facility for this? Or there is any design pattern that I am
|
| Query:function of method toString()? | 10 May 2007 12:22 GMT | 2 |
I came across a demo yesterday,which use System.out.println(cla) to print a sentence on screen.But "cla" here is a class name.There is only one method in this class definede as:public String toString(). Here is my question:If a mehod like "public String to String()" defined
|
| Class destructors | 10 May 2007 12:19 GMT | 8 |
Could someone explain why there is no destructor in Java classes? There are many times you need to be called WHEN an object goes out of scope and not when it will eventally be freed.
|
| Request focus on Page refresh | 10 May 2007 10:05 GMT | 2 |
Is there any way to set the request focus of an object in a jsp page dynamically when the page refreshed. Let me explain more in detail. Assume a form having two text fields txt1 and txt2. On first load of this form, the focus should be in
|
| Query regd. memory usage | 10 May 2007 09:39 GMT | 4 |
I have a method which takes a list of beans as parameter and does some insertions into the database. I have something like this inside the for loop: for(int i=0;i<list.size();i++){
|
| Initializing final variables | 10 May 2007 09:00 GMT | 1 |
I'm declaring a constant object in my class definition, whose constructor throws an exception. Note that the exception never actually gets thrown - my argument ensures that. Apparently, I can't use try-catch blocks outside a method, so I can't
|