Is there a way to clear the shell

hi there,
i am programming a game. since now i want to output the gameloop data with a shell.
is there some way of clearing the shell?
i would like to clear the shell and then output the data onto an emty shell?
thx

Why not just create another JFrame and add a JTextArea to that and then output all your game data there instead.
Otherwise you'll need to possible send an escape code of some kind to the shell (depending on what terminal it is emulating) or simply output 25 (or more) empty lines.

Similar Messages

  • Is there a way to clear the cache on iPhone 4?

    Is there a way to clear the cache on iPhone 4?  Seems to be a bit slow checking for e-mail, etc., lately.

    Thank you for the info!!!!  I did go in and delete cookies and history, the only 2 options available.  Whether it helps or not, still a good thing to do once in a while, I would imagine.  Thanks so much!!!

  • Is there a way to clear the list of "synched items" from phone?

    Please read the list of things I've done so far before responding with basic stuff.
    My iphone 4 was just updated with the latest firmware, 7.1.1. Full backup was done prior to upgrade. Subsequently, everything was wiped from the phone. Restore brought back a limited amount of apps and all pictures, but no music and no video. The Restore process displayed each file that should have been restored, but when completed, no music or videos were. restored. I tried again to restore with the same results. Tried syncing a few time and nothing was transferred.
    Frustrated as ****, I added a song to be synced. That song and only that song was synced. Short of deselecting and reselecting everything that I want on the phone, is there a way to tell the phone that nothing has been synced and to resync everything without verifying if it exists on the phone?

    You will find that by pressing the option key when you are in the File menu, that Duplicate changes to Save As… .

  • Is there a way to clear the content stored in dbms_error_code

    Hi everybody,
    Here is my situation. I'm doing an application in forms 6.i. There's an ON-ERROR trigger defined at form level which calls a procedure programmed to treat errors. Inside this procedure I issue a message like "record is being used by another user" when I get the -54 dbms_error_code.
    So far, so good. The problem is when I test the lock. I do a select for update nowait to lock a record (at sql*plus) and then I try to update this record (in forms). The exception is raised just fine. But when I returned to sql*plus and issue a rollback to end the transaction and go to forms and try to continue with the operation, I succeed, the record is recorded in the database but i get the error message "record is being used by another user". This happens always in the commit line of my code and I know that it passes through ON-ERROR and issue the message.
    I know that it's because of the last error that ocurred (-54 lock). So i was wondering if there is a way of clearing this last error. Please, anyone can help me?
    Thanks anyway.

    The On-error trigger gets raised for lots of different reasons. Only a few of these are caused by database errors, and ONLY THEN should you check dbms_error_code.
    <p>When you get any other errors, ones caused by doing something wrong within the form processing, On-Error runs, but dbms_error_code is not changed. So you should not check it.
    <p>EVERY time on-error runs, you should check Error_Code, and only with certain values should you check DBMS_Error_Text. Here is an on-error trigger I use:
    <p>Re: FRM-40735:Pre_Insert trigger raised unhandled exception ORA-20011

  • Is there a way to clear the app stores "Not on this iphone" list of previously downloaded apps?

    with the new update there is a way to download all your old apps. however my list is immensly long, and i am looking for a way to clear or reset the list.
    the list im referring to is on my iphone 4, in the app store, under the tab "Updates" and "Not on this Iphone" alot of these apps are old or i have no interest ever downloading again and would prefer to not have them showing

    There are many threads that have recently been posted addressing this matter. Currently iTunes and iOS displays all Apps ever downloaded  and you can't control which ones you would like to delete from that list permanently and which you would like to keep in the Cloud, so to speak.

  • HT2480 Is there a way to clear the calendar invitations from the iPhone invite inbox when the Meeting is accepted by a delegate?

    I am running an Exchange / Outlook 2010 environment with many mobile users accessing email and calendars with iPhones.  Senior Executives have delegated their Calendars to Executive Assistants, who manage them mostly from Outlook.  When Meeting requests arrive for the executives, their assistants Accept, Decline or mark as Tentative as the calendar allows.
    The executives have only their mail account on their iPhone.  The assistants have both their account and the executive's Exchange ActiveSync account on their phones.  When the request is handled and a Send Response Now is submitted, the calendar invitation does not get cleared from the Senior Executive's Calendar invitation inbox, or the Calendar invitation inbox on their assistant's phone (which is to say, the Senior Executive's Calendar, which is a secondary calendar at this point) but it does show up properly on their Calendar.  It seems the cache doesn't know that the request has been handled and does not clear the flag.
    Other than turning off the Calendar, deleting the ActiveSync data and downloading fresh data, is there a way to correct this?  I have tried multiple switches and settings, notifications, etc.  I have even dabbled in Outlook's Rules, since this is where the delegation occurs.  Once a Meeting is accepted, how can it be cleared in the inbox?  This is not a badge, as I've turned off badges.
    It affects not only the iPhone 4 and 5, but also iPads and iPad Minis running iOS 6.0.1 or better.

    I have similar issue.  Sharing calendars in the house hold and when I did it lit up my calendars inbox with 21 messages and no way to clear them. Hope this is fixed in the next iOS release.

  • Is there any way to clear the Update badge from Settings?

    I don't want to update to IOS 5.1. I prefer to keep running 5.0.1 which is runing fine and fast for me. Seems like when I update too much, my i devices end up slowing down to a point where they frustrate me. Best to leave them the way they were when I got them. I'll get 5.1 when I get a new iPad and/or a new iPhone.
    But I'm not fond of staring at this red badge on settings for the next several months. Seems like there should be a way to clear it without having to obey it.

    GeneTucc wrote:
    I don't want to update to IOS 5.1. I prefer to keep running 5.0.1 which is runing fine and fast for me. Seems like when I update too much, my i devices end up slowing down to a point where they frustrate me. Best to leave them the way they were when I got them. I'll get 5.1 when I get a new iPad and/or a new iPhone.
    But I'm not fond of staring at this red badge on settings for the next several months. Seems like there should be a way to clear it without having to obey it.
    You MUST OBEY!! Repeat YOU MUST OBEY, YOU MUST OBEY!

  • Is There a Way to Clear the Screen ???

    I am building a Class that is text (command line) based. Is there anyway to clear the screen (output) in such a class.
    Similar to what CLS does in DOS...

    See my response here:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=317191

  • Is there a way to clear the default text in a form field onclick?

    I am trying to add javascript to clear the default text in a form field using onclick?  Any idea?
    Thanks!

    Instead of entering any default text in the field, get rid of any scripting you currently have for the field and use the following custom Format script:
    // Custom Format script
    if (!event.value) event.value = "Your default text goes here.";
    The string you specify here will be displayed when the field is blank, and the text that's entered in the fields otherwise. It will also go away when the field has the focus, which is what you want.

  • Is there a way to clear the cache programmatically

    I want to clear the cache for several items when a validation returns false.
    Is that possible.
    howard

    Howard - Try creating an on-load process to clear them. Set the process's condition to "When Inline Validation Errors are Displayed". The process itself could be one of the Session State -type processes or a PL/SQL process in which you assign null values to the items of concern.
    Scott

  • Is there a way to clear the history of all the reports

    I would like to clear out the history of all the reports listed in InfoView because many of the links are broke because I was told to delete all the directories containing the pdf's in the Epic\EpicBI\Output folder. Can I  truncate the tables in the database or where does InfoView maintain those links?

    If you want to delete all the scheduled instances for reports, it can use the code similar to the following:
    IInfoObjects oInfoObjects = oInfoStore.query("select si_id from ci_infoobjects where si_instance=1 and si_name='<report name>'");
    for(int i=0; i<oInfoObjects.size(); i++)
           IInfoObject oInfoObject = (IInfoObject)oInfoObjects.get(i);
           oInfoObject.deleteNow();
    oInfoStore.commit(oInfObjects);
    as a side note, do not try to alter the output file repository or the CMS database directly, it could create lot of issues\inconsistencies in your system and make it unusable.
    Thanks
    Aasavari

  • Is there a way to clear the ANE cache

    I have an Air app for iOS that has always built just fine. Recently, I accidentlayy included a bad file as an ANE. I replaced it and re-entered the path, but now when I try to publish the app, I get this error:
    Error creating files.
    C:\Users\XXX\AppData\Local\Temp\nefertiti_slots_ANE_Cache\._com.milkmangames.extensions.Go Viral.ane is not a valid ANE file.
    This happens whether or not I have the valid ANE file present and included.

    try a reset, hold down the home/power button until you see the apple logo and then release, then wait for the phone to boot back up.

  • Is there a way to clear top hits dropdown

    Is there a way to clear the top hits and google search that appears in a dropdown when you start typing in the unified search bar. I am running Safari 8.0.3 and Yosemite 10.10.2 I have unchecked just about everything in the preferences and deleted all history but they still pop up as i type a search.

    Remove a saved password here: Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    See:
    * http://kb.mozillazine.org/Deleting_autocomplete_entries
    * [[Remembering passwords]]

  • Is there a way to view the web history after it's been cleared from the history tab?

    Is there a way to view the web history after it's been cleared from the history tab?

    Yes.

  • Is there any way to change the status of MO to clear by di ?

    Is there any way to change the status of MO to clear  automatically ?
    When the finished qty isn't less than planned qty , we can do it.
    Thanks

    Hello,
    If the finished QTY less then Planned Qty can be:
    - Post a Receipt from production again with the remaining Qty to complete the production Order
    - Close the Work Order by  oPorductionOrder.Cancel Command
    - Report remaining Qty as Rejected Qty.
    Regards,
    J.

Maybe you are looking for

  • Replicat Process Abend

    Hi: i have active-active bidirectional replication in Oracle GoldeGate. when i change in A database it replicates in B database. like insert (1,'A') values in A database it replicates in B database. when i am trying to insert (2,'B') in B database, t

  • I Need Use the USB port and CDROM from iManager

    Originally Posted by AndersG Crsven, > Now, I need access through of imanager the CD-ROM or the USB (Pen > Drive) and I don't see, I don't access, pls, how I can see they. Not sure what you want? What do you want to do with CD/USB in iMAnager? - Ande

  • Error for Refresh Materialized View

    Hi, All I get a error when I refresh the Materialized View, But I can't solve this error. ORA-12008: error in materialized view refresh path ORA-04045: errors during recompilation/revalidation of MV_NAME ORA-00600: internal error code, arguments: [qs

  • Creating executable file for class file

    Hi, Im trying to create an .exe file for my application. Is it possible? I know that my program will become platform-dependent...

  • Is code in a disable structure included in an executable?

    I have a LabVIEW 8.6 VI that I would like to build into an executable.  This code includes several PXI drivers for motion control and power supply control.  I have a hardware simulation mode built into the code that will allow me to run the front pan