Clear Screen method................

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kaleeswaran
    New Member
    • Mar 2007
    • 132

    #1

    Clear Screen method................

    hi!!!!!!!!!!!!! !!!!!!!
    i would like to konw ..
    we having clrscr() method is used for clear the screen in C and C++ programming...
    like way is there any method available to cear the screen in java language?...
    tell me plzzzzzzzzzzzzz zzzzz
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by kaleeswaran
    hi!!!!!!!!!!!!! !!!!!!!
    i would like to konw ..
    we having clrscr() method is used for clear the screen in C and C++ programming...
    like way is there any method available to cear the screen in java language?...
    tell me plzzzzzzzzzzzzz zzzzz
    Forget it.

    Of course you make your own

    Code:
     void clrscr() { 
      for(int i = 0; i < 1000;i++) {
    	 System.out.println();
      }
    }

    Comment

    Working...