Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesJava Help
The ASP Free website provides in-depth information on the latest developer tools available from Microsoft. Our cadre of writers, highly experienced industry experts, reveals the best ways to use established technologies as well as new and emerging technologies. Our coverage of Microsoft's development and administration technologies is among the most respected in the IT industry today.

ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month!
Download and Activate to enter!

Intel® Graphics Performance Analyzers is a powerful tool suite for analyzing and optimizing your games, media, and graphics-intensive applications. Used by some of the best developers on the planet, Intel GPA lets you maximize your app’s performance.


Tutorials
| Forums

Download to Enter
| Contest Rules

DOWNLOAD INTEL® GPA FOR FREE

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 20th, 2004, 01:07 PM
jpd01u jpd01u is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 13 jpd01u User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Java and the DOS "CLS" command

Hiya ppl,

Can someone tell me if its possible to have a Java statement that can clear the command line output like the old DOS cls command?

I'm trying to have a word counter but without it filling up the whole cmd window...Just incrimenting on one line.

Any ideas?

Thanx

J

Reply With Quote
  #2  
Old April 20th, 2004, 03:33 PM
rossM rossM is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jan 2004
Location: England
Posts: 952 rossM User rank is Corporal (100 - 500 Reputation Level)rossM User rank is Corporal (100 - 500 Reputation Level)rossM User rank is Corporal (100 - 500 Reputation Level)rossM User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 4 Days 23 h 38 m 44 sec
Reputation Power: 12
There is a way - using a native method, but it's a bit long winded and you need a C++ compiler.
Say you have a class called ClearScreen:
Code:
public class ClearScreen {

    static {
        System.loadLibrary("Clear");
    }
    
    public native static void clearScreen();

    public static void main(String[] args) {
        clearScreen();
    }
    
}

The native method clearScreen will be implemented in C++ and the dll file Clear.dll (create it in a second) will be loaded by the runtime system when the class is loaded.

Now compile ClearScreen: "javac ClearScreen.java"
Now generate the appropriate .h file: "javah ClearScreen"
Now you can create the implementation for the clearScreen method:
Code:
#include <jni.h>
#include "ClearScreen.h"
#include <stdlib.h>

JNIEXPORT void JNICALL Java_ClearScreen_clearScreen(JNIEnv *, jclass)
{
    system("cls");
}

Save that in a file called say ClearScreen.cpp.
Now compile your .dll file: "cl -IC:\j2sdk1.4.2\include -IC:\j2sdk1.4.2\include\win32 -LD ClearScreen.cpp -FeClear.dll" (assuming you have a microsoft compiler).
Change your include folders to match your setup.

Now hopefully when you run the program "java ClearScreen" it should work.
Might be no good to you because it uses another language.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Java and the DOS "CLS" command


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 11 - Follow our Sitemap