| Thread | Last Post | Replies |
|
| MD5 algorithm | 15 May 2007 10:02 GMT | 13 |
I'm trying to implement the MD5 algorithm. (Note: I'm not looking for an existing MD5 library; this is an exercise). It compiles and returns something that looks like a hash superficially, but that's clearly the wrong result. Even if there were a Unicode/Ascii problem, the empty
|
| how to extract info from a huge size xml ? | 15 May 2007 09:50 GMT | 10 |
Sorry ,everyone ,i'm new to Java. If i wannt first search with the xml file to get the right position , then extract the corresponding xml item after that .
|
| Yet Another Software Challenge | 15 May 2007 09:10 GMT | 2 |
For those interested in <b>programming riddles</b>, I would like to announce a new programming challenge I'm just launching at http://software.challenge.googlepages.com This challenge is in its early stage and thus set to be continuously
|
| Query:the real function of System.exit(0)? | 15 May 2007 08:38 GMT | 17 |
As we all know,System.exit(0) is often used to quit the program. But when it applied to some of my programs,the outcome was not so. I created a frame using class JFrame.Then I registerd WindowsAdapter on the close action,and here came the problem:
|
| No services in tomcat | 15 May 2007 06:42 GMT | 4 |
I have a webservice named thewebservice and it work ok in windows. When I copy it from the webapps of windows to the webapps of linux I can't see it. Infact visiting the url http://localhost:8080/thewebservice/services
|
| Simple threaded app breaks on openStream method | 15 May 2007 03:00 GMT | 1 |
// BEGIN TESTURL CLASS import java.io.*; public class TestURL { static boolean listening = true;
|
| JSF dataTable editing | 14 May 2007 23:06 GMT | 3 |
I have a JSF application where a dataTable has multiple editable options (inputText, SelectBox, CheckBox, etc) I want to capture all of changes for these values when I submit to my back-end bean.
|
| GregorianCalendar time not updating when changing TimeZone | 14 May 2007 22:51 GMT | 1 |
I am having an issue trying to update the timezone on a GregorianCalendar instance. I tried this code sample on a couple of different systems, all with the same result. This code basically does four things.
|
| [Newbie] design question | 14 May 2007 18:52 GMT | 2 |
Suppose I have this two classes: class ShoppingCart { addBook(Book book){} removeBook(Book book) {}
|
| ExitValue of Windows OS Process returns always 128 | 14 May 2007 16:16 GMT | 1 |
In our java webapp (jfdk 1.4.2 and Tomcat 4 on an Windows 2003 Server) we have a class, which calls an externel programm as a OS process. But the exit code is 128. Always !!! If we execute the command in die Windows Command Line directly, everythink works fine.
|
| Sorry, 1 qns to ask | 14 May 2007 15:31 GMT | 3 |
Gas Used Rate First 100 cubic meters $5.00 minimum cost Next 200 cubic meters 4 cents per cubic meters Next 200 cubic meters 2 cents per cubic meters
|
| Removing pipes from a string | 14 May 2007 14:17 GMT | 7 |
I need to strip all of the pipe-characters of a string. normally I would use something like: str.replaceAll("the-char-i-want-to-replace", ""); But from some reason: str.replaceAll("|", "") do not alter the string.
|
| Question regarding final blank variable initilisation | 14 May 2007 13:21 GMT | 1 |
Plz can someone explain the difference between static final variable and final instance variable regarding their initilisation: in particular : I noticed that if we leave a final INSTANCE variable non initialised, the code will compile
|
| help me with my scripts... | 14 May 2007 12:50 GMT | 2 |
why my scripts is wrong, i have declare the cost..why i still got error // How much it cost for the gas to be consumed per cubic meter import java.util.Scanner;
|
| Help: which is the best book in java ? | 14 May 2007 12:35 GMT | 2 |
which is the best book to learn java . I already have 2 plus of exp as developer , DBA in oracle Applications - but need to switch to java now . Please guide me in knowing which is the best book to learn java .
|