Forum: Java Oct 23rd, 2009 |
| Replies: 5 Views: 389 Can someone please tell me why I have been down-voted for previous post? I really wanted to solution this problem. I am used to explaint a lot of students facts like this so that's why I gave ki72... |
Forum: Java Oct 22nd, 2009 |
| Replies: 5 Views: 389 int a=0,b=0,c=0,d=0;
int n=4875;
int rest=0,i=1;
while(n!=0)
{
rest = n%10;//ghet the last digit of the number
n=(n-rest)/10; //the... |
Forum: Java Oct 16th, 2009 |
| Replies: 11 Views: 342 Add "import java.io.File;" then use this code:
File f = new File("./");
System.out.println(f.getAbsolutePath());
This will tell you the absolute path of the folder in which... |
Forum: Java Oct 16th, 2009 |
| Replies: 11 Views: 377 I need more details. I don't understand what you are actualy doing. The best method would be to make a JTable in which you can see your database table records. Then you can go further. I mean how can... |