Forum: Java May 31st, 2008 |
| Replies: 36 Views: 25,901 Could I recommend both Notepad++ and JGRASP as lightweight beginner IDEs? I like them a lot when writing individual java files and I don't feel like waiting for Netbeans to come up. They both have... |
Forum: Java May 31st, 2008 |
| Replies: 1 Views: 2,830 I attached the full source code if you want to give it a shot.
Interestingly enough, when I created this file, I had no problems with it.
import javax.crypto.*;
import java.security.*;
import... |
Forum: Java May 31st, 2008 |
| Replies: 1 Views: 2,830 I am creating a properties JFrame for use in my GUI, and I wanted to save all of the data inputted into the frame into a file called config.properties. The Poperties class already has several... |
Forum: Java May 16th, 2008 |
| Replies: 3 Views: 2,136 fyi, "length" is the correct spelling. A trace of p[1] and p[2] is as follows:
p[1] p[2] newTerm
0 1 1
1 1 2
1 2 3... |