| Thread | Last Post | Replies |
|
| Java/J2EE Openings in RTP, NC | 24 Apr 2007 03:34 GMT | 1 |
Location: Research Triangle Park (Cary, NC, Raleigh, NC) Positions: Java Struts Developer (5 openings) JSP, EJB, DAO Developer (5 openings)
|
| Is it possible to insert the "in line DTD code", in the xml file output, created by a java program? | 24 Apr 2007 03:20 GMT | 3 |
I wrote a java program which outputs a xml file! But I would prefer this program to insert the DTD code on the fly, in the xml file when created! I want the xml file to look like this:
|
| Netbeans AND RCP | 23 Apr 2007 23:45 GMT | 2 |
Good morning! Let me apologize in advance if this is not the appropriate place for this post... nevertheless, I figured this would be a good place to start. We are in the midst of a project involving Netbeans and RCP. As most
|
| String getBytes() | 23 Apr 2007 23:24 GMT | 3 |
How to make b[0] to get 0xaa? String s=""+(char)0xaa; byte[] b=s.getBytes(); System.out.println(b[0]);<==result is not 0xaa
|
| Sorting and removing duplicates | 23 Apr 2007 23:17 GMT | 8 |
I have been asked to implement quicksort (or mergesort) in an application, and then remove any duplicates. I have done just that, however, I have been further told that I should call my sort method from within my remove duplicates method.
|
| Bytebuffer to byte array and Object streams | 23 Apr 2007 22:57 GMT | 4 |
I am trying to send objects through a bytebuffer and have a server that uses NIO for this, and a threaded client. The clients sents the object ok, but the server throws this exception: java.io.StreamCorruptedException: invalid stream header
|
| Advice on learning Java | 23 Apr 2007 21:02 GMT | 7 |
I'm looking for some helpful comments on the relative merits of free (as in beer) on line tutorials, or recommendation to good Java books (not necesarily free books but cost is a consideration) I'm not a beginner in the programming world in general. My first
|
| question regarding java puzzlers #2 | 23 Apr 2007 19:50 GMT | 30 |
With reference to the following code public class Change { public static void main(String args[]) { System.out.println(2.00 - 1.10);
|
| opening a jframe using a button | 23 Apr 2007 18:49 GMT | 2 |
Ok, I believe you are going to find this simple, Right well I'm useing netbeans and i have created two separate jframes, I have them in the same package, and I want to call/open/view jframe2 by pressing a button on jframe1.
|
| open a jframe using a button | 23 Apr 2007 18:47 GMT | 2 |
ok, I believe you will find this easy, I've created 2 jframes in the same package testForum and addForum, what I'm trying to do is open/call addForum from a button in testForum, they are both in the same package, and I've use NetBeans to
|
| how can io dispaly the content of any file into the text area of jsp page | 23 Apr 2007 17:37 GMT | 1 |
In my project i want to dispaly the content of text/any file into the web page. if anybody how to this,then please tell me. Thanks in advance.
|
| Comparable interface | 23 Apr 2007 16:28 GMT | 6 |
if i am implelenting the comparable interface, and the parameter passed is not an object which is comparable to the calling object, what value shall the function return. Or is there any otherway i should handle that situation.
|
| HashMap.put error in Xcode | 23 Apr 2007 16:11 GMT | 9 |
I'm using Apple's Xcode 1.1 and have had no big problem with it until now. I've created a HashMap and used the put() method to insert a BitSet into it, but cannot get the compiler to like it. A paraphrase of my code:
|
| java handles using c++ | 23 Apr 2007 15:59 GMT | 1 |
Do you know how is possible to get the handle from a java app using c + +? I can see that is possible to get the handle of a main window of a java app but I can't get the handle of any button or window inside
|
| forEach and Casting | 23 Apr 2007 15:53 GMT | 16 |
I have a question about the use of the foreach statement in Java 1.5. Currently, the collection I'm using an Iterator over contains objects of a Generic type (an abstract class). When I get the object from the collection, I must cast it to the more specific type so I can use the
|