| Thread | Last Post | Replies |
|
| HTML "scrape" causes loss of query string in URL | 23 Jan 2006 08:44 GMT | 17 |
URL: http://www.myjavaserver.com/servlet/ppowell.ChatServlet?message=%2Fm&nickname=Phil This works just fine if called via browser, however, if using any data scraper out there, including my own HTMLRetriever.getHTML() method, the
|
| String to int & back again | 23 Jan 2006 01:05 GMT | 7 |
Hello. I have the following code: float num = 205.0f; String myString = "0"; for(int i=0;i<=5;i++){
|
| Syntax error on token "this", invalid ReferenceType | 22 Jan 2006 20:34 GMT | 5 |
I have wrote this code in esclipse and I am getting error "Syntax error on token "this", invalid ReferenceType" on the second line? could some one explaine why? public boolean equals(Object f){
|
| Callbacks -- Or Activating the Main Swing Thread | 22 Jan 2006 18:32 GMT | 3 |
I've asked recently about dealing with Threads in Swing. Now I have one other problem and I THINK the term I want is a callback, but it's hard to find docs on this. Basically I have a primary Swing thread that has invoked a subthread to process data while the display refreshes.
|
| Help : Message Driven bean seeing the same message multiple times | 22 Jan 2006 01:00 GMT | 1 |
( We are using weblogic 8.1 on Solaris 2.9 We have a bunch of message driven beans with the transaction type as 'Container' and the acknowledge-mode mode as auto-acknowledge. They are consuming messages from a weblogic Queue ( javax.jms.Queue ). The MBD
|
| Animated GIFs corrupt when inserted to JTextPane | 21 Jan 2006 04:30 GMT | 5 |
I have some code to add animated GIFs to a JTextPane but unfortunately they come out corrupted. Can anybody tell me how to solve this? I have added the smallest code that exhibits this behaviour below. Thanks
|
| Switch on Strings | 21 Jan 2006 02:07 GMT | 6 |
Hello, I have code that looks like this: switch(myColor){ case "blue": {
|
| throwing exception from constructor | 21 Jan 2006 00:30 GMT | 21 |
Is it poor practice to throw an exception from a constructor? What is the status of an object whose constructor throws an exception:
|
| Applet param returning null with Java 1.5 | 20 Jan 2006 19:32 GMT | 2 |
I've created an applet with the following set of parameters in the HTML: <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" id=List width="950" height="500"
|
| How can I make JTree look at children over siblings? | 20 Jan 2006 18:17 GMT | 3 |
I have a question which doesen't appear to be answered by the Sun JTree tutorial. The Sun JTree tutorial says that a TreeModel can allow me to use an existing hierarchial structure. Ok, so I have a hierarchial structure
|
| Multiple layer abstract claa | 20 Jan 2006 12:21 GMT | 2 |
If I write the following code: public abstract class A { ...... }
|
| Jlist items not appearing occasionally | 20 Jan 2006 04:54 GMT | 15 |
I am adding entries to a JList via a DefaultListModel from a single thread but sometimes the entries do not show unless I modify the list. To give some context, I have an instant messenger application and on login, several users are added to the list. Sometimes the list appears ...
|
| Using Java to produce HTML like a php script | 19 Jan 2006 21:09 GMT | 1 |
I am a university student using a program that requires updated xml from a webpage (well, a webserver). Now i know this can be done with php and apparently quite easily but I would really rather do this with Java (as the program that will be manipulating the information to be
|
| web application without war file | 19 Jan 2006 15:22 GMT | 3 |
I'm new on Jboss - maybe someone can help me. How (or) is it possible, to deploy a webaplication on jboss without a war file? It just takes to long during development process. Thx for any answers
|
| programming of an editable pipeline? | 19 Jan 2006 12:54 GMT | 2 |
I need a flexible way to organize a pipeline of different "sub-programs" (probably perl and c). The "sub-programs" are triggered according to the output of the prior programs and according to certain parameters. The pipeline will have the form of a graph with branching of the ...
|