| Thread | Last Post | Replies |
|
| xml to pdf | 05 Oct 2006 17:31 GMT | 1 |
I've created a form in Acrobat to be filled out online then submitted via email via an xml data file. When importing the xml data file a couple of the fields are not importing. When I open up the xml data file the data is there but it's at the very bottom, not in the order it
|
| 'break' statements to jump among switch cases: how to? | 05 Oct 2006 16:50 GMT | 7 |
Is there a legal way to use break statements to jump from one switch case to another (see below)? Thanks! switch(mode)
|
| Table not unlock after create index statement | 05 Oct 2006 16:44 GMT | 2 |
This is kinda wierd, i'm using an informix DB, i create an index using a Statement.executeUpdate("CREATE INDEX..."), after that, i'm try to update the table and give me this error:
|
| Converting String to byte array | 05 Oct 2006 16:28 GMT | 3 |
There is a code for converting String to byte array, as follows: " public byte[] toByteArray(String s) {
|
| find out wich class have colled method at run time | 05 Oct 2006 16:15 GMT | 1 |
If I have one class with some public method, is there a way to find out wich class have called it, and do it at runtime? I can't modie classes that a using this method. Thanx in advance
|
| inline methods | 05 Oct 2006 15:18 GMT | 2 |
According to the Java language specification, a method can only be "inlined" by the compiler if it is declared final (necessary, but not complete requirement). If I declare a class to be final, this implies that all of the methods
|
| jni problem - destroy jvm and rebuild it | 05 Oct 2006 14:39 GMT | 4 |
i'm busy with jni. i want to start a jvm from my c++ code and call a java method. that's working so far. but i have the problem that it has to be possible to destroy the jvm and create afterwards again. i can't just create the jvm in the main program and let it run until the main ...
|
| How to emulate C# 'internal' access modifier? | 05 Oct 2006 13:53 GMT | 18 |
Is there a way to emulate the (cross-package) assembly access modifier "internal" of C#? I need to let some classes *within* the same assembly (you know: the same JAR) to cooperate, despite belonging to distinct (yet omogeneous)
|
| multiple selection in jsp | 05 Oct 2006 13:02 GMT | 3 |
Iam using struts framework for our project. I have a jsp in which multiple selection can be made in a list box. While submitting, the action class is called that perfomrs some operations. The list box is populated from database. The multiple selected values
|
| returning a pair of iterator. | 05 Oct 2006 12:55 GMT | 12 |
I have a collection class (say ArrayList) which stores values. A separate class Session holds the array list reference. I want the session class to return a pair of iterator for the ArrayList for iteration purpose (say from example 50 to 60 index only). And also want
|
| JDBC: Checking if a unique column already exists during insertion | 05 Oct 2006 12:17 GMT | 1 |
Say I have the following table: CREATE TABLE TEST ( COL1 BIGINT PRIMARY KEY, COL2 VARCHAR(50),
|
| actions on JPanel objects | 05 Oct 2006 11:43 GMT | 2 |
I have a main project GUI with tabs on it. these tabs have JPanels with various JComponents on them. The JPanels are all made in seperate classes that extend JPanel. the point of that is to make my code a little cleaner. All the components in JPanel are private. However, I
|
| Browser versus Java URLConnection | 05 Oct 2006 11:39 GMT | 7 |
Perhaps someone knows the answer to this problem. I open a connection to a URL and read lines one at a time from the URL using a InputStreamReader and a BufferedReader: // Open connection to URL
|
| need help in JSTL/STRUTS + Custom Tag | 05 Oct 2006 10:56 GMT | 3 |
I need to access (without scriptlet) to any variables saved in a session, in order to use them in a custom tag (for pagination purpose). This is the custom tag. <p:pager range="" results="" page="" />
|
| applets using jogl | 05 Oct 2006 10:54 GMT | 2 |
Hello All, I'd like to write some applets using jogl. I have written some "applications" using jogl and also applets without jogl. Short examples would be most useful. Any comments gratefully received.
|