No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
Is as way test out swing components without having to rely on Thread.sleep() to make sure that the components have realized completely. This problem with this approach is that it becomes difficult to guess how long it would take for components to realize under different environments of execution like vnc … | |
This code takes in a scrambled input word and gives out the unscrambled list of words. Eg... Input = time Output = mite, item, emit etc. I had posted an unscrambler in java sometime ago. This one is the improvement over the previous one. In the sense, the java unscrambler … | |
This script uploads the pics in the specified directory into the specified album in picasa. The script requires gdata libraries installed. Check [I]code.google.com[/I]. I had written and tested the code in linux platform. Hasn't been tested in windows. Any suggestions to add more functionality, or add a UI or any … | |
Re: Is this file "something.ser" already created before you try to read that using fileInputStream at the server's side? | |
Re: You've used the post increment operator(p++) to increment the pointer which increments after the operation. Therefore p captures the same address for every recursion. Try using a ++p it should work. | |
Re: If you would like to read the list in any other methods you could declare the list as an instance variable instead of a local variable. Like for example, you have posted a method definition... something like ... public class X { public void methodX() { List<Customer2> list = new … | |
Have written an unscrambler in java. This takes in a scrambled word for input and returns the unscrambled word. The way it works is that it creates all permutations of the provided word (I have borrowed the permutation generating code from daniweb i guess) and compares each word to an … ![]() |
The End.