Forum: Java Dec 5th, 2007 |
| Replies: 0 Views: 2,120 I'm getting a whole bunch of null pointer exceptions when I run my program. Here's the info:
My program takes a text file (myIn.txt), will keep individual totals of all the characters, then put them... |
Forum: Java Nov 12th, 2007 |
| Replies: 2 Views: 8,175 Actually, I'm gonna scrap the whole thing and start from scratch I think. Consider this thread 'solved' for now. |
Forum: Java Nov 12th, 2007 |
| Replies: 2 Views: 8,175 I've figured out that problem, when you apply +,-,*,/ to two chars it returns an int, instead of a new char. I adjusted my program for that, but now, when I run it, if i put in "1+2" i'll get Postfix... |
Forum: Java Nov 11th, 2007 |
| Replies: 2 Views: 8,175 Hello folks, I have a program that uses a linked list to implement a stack to convert a string from infix notation to postfix notation, and then to evaluate it. Well, the conversion part works just... |