Error ! some body help me

i have windows xp pro with sp2.....
java compiler:
java version "1.4.2_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
whenever i run code below it gives me error:
code
import java.awt.*;
import java.applet.*;
import java.awt.image.*;
import java.awt.event.*;
import java.math.*;
import javax.swing.JApplet;
import javax.swing.*;
public class particle extends JApplet implements Runnable, MouseMotionListener
     //blanking out the mouse cursor in the applet screen
     BufferedImage bufferdImg;
     Graphics2D bufferdImgSurface;
     JButton play;
     //thread
     Thread pThread;
     //for screen dimension
     Dimension screen;
     int width;
     int height;
     //mouse x cordinate
     int x;
     long timeStart;
     long timeEnd;
     long timeDiff;
     long sleepTime;
     Image image[];
     MediaTracker mTracker;
     public void start(){
          pThread=new Thread(this);
          pThread.start();
     public void init(){
          screen=getSize();
          width=screen.width;
          height=screen.height;
          image=new Image[3];
          mTracker=new MediaTracker(this);
          image[0]=getImage(getDocumentBase(),"player.gif");
          image[1]=getImage(getDocumentBase(),"background.jpg");
          mTracker.addImage(image[0],0);
          mTracker.addImage(image[1],0);
          BufferedImage bim = new BufferedImage(1,1,BufferedImage.TYPE_4BYTE_ABGR);
          setCursor(getToolkit().createCustomCursor(bim,(new Point(0,0)),""));
          bufferdImg = (BufferedImage)createImage(width, height);
     bufferdImgSurface = bufferdImg.createGraphics();
     addMouseMotionListener(this);
     public void run(){
          while(true)
               timeStart=System.currentTimeMillis();
               repaint();
               timeEnd=System.currentTimeMillis();
               timeDiff=timeEnd-timeStart;
               sleepTime=50-timeDiff;
               if(sleepTime<10)
                    sleepTime=10;
               try
                    Thread.sleep(sleepTime);
               }catch(InterruptedException e){}
     public void paint(Graphics g){
          update(g);
     public void update(Graphics g){
          Graphics2D g2=(Graphics2D)g;
          bufferdImgSurface.clearRect(0,0,width,height);
          bufferdImgSurface.setBackground(Color.black);
          bufferdImgSurface.drawImage(image[1],0,0,this);
          bufferdImgSurface.drawImage(image[0],x,width-20,this);
          g2.drawImage(bufferdImg,0,0,this);
     public void mouseMoved(MouseEvent e){
          this.x=e.getX();
     public void mouseDragged(MouseEvent e){}
error
Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred at PC=0xC3D2
12
Function=[Unknown.]
Library=(N/A)
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
Dynamic libraries:
0x00400000 - 0x0040C000 D:\j2sdk1.4.2_05\bin\javac.exe
0x77F50000 - 0x77FF9000 C:\WINDOWS\System32\ntdll.dll
0x77E60000 - 0x77F48000 C:\WINDOWS\system32\kernel32.dll
0x77DA0000 - 0x77E35000 C:\WINDOWS\system32\ADVAPI32.dll
0x78000000 - 0x78087000 C:\WINDOWS\system32\RPCRT4.dll
0x77C10000 - 0x77C65000 C:\WINDOWS\system32\MSVCRT.dll
0x00280000 - 0x002F3000 C:\DOCUME~1\H34PH4~1\LOCALS~1\Temp\cuv140.tmp
0x77340000 - 0x773D4000 C:\WINDOWS\system32\COMCTL32.DLL
0x77C70000 - 0x77CB1000 C:\WINDOWS\system32\GDI32.dll
0x77CC0000 - 0x77D4C000 C:\WINDOWS\system32\USER32.dll
0x71B20000 - 0x71B31000 C:\WINDOWS\system32\MPR.DLL
0x771C0000 - 0x772E6000 C:\WINDOWS\system32\OLE32.DLL
0x77130000 - 0x771BD000 C:\WINDOWS\system32\OLEAUT32.DLL
0x71AD0000 - 0x71AD9000 C:\WINDOWS\System32\WSOCK32.DLL
0x71AB0000 - 0x71AC5000 C:\WINDOWS\System32\WS2_32.dll
0x71AA0000 - 0x71AA8000 C:\WINDOWS\System32\WS2HELP.dll
0x76390000 - 0x763AC000 C:\WINDOWS\System32\IMM32.DLL
0x629C0000 - 0x629C9000 C:\WINDOWS\System32\LPK.DLL
0x72FA0000 - 0x73009000 C:\WINDOWS\System32\USP10.dll
0x08000000 - 0x08139000 D:\j2sdk1.4.2_05\jre\bin\client\jvm.dll
0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
0x10000000 - 0x10007000 D:\j2sdk1.4.2_05\jre\bin\hpi.dll
0x009D0000 - 0x009DE000 D:\j2sdk1.4.2_05\jre\bin\verify.dll
0x009E0000 - 0x009F9000 D:\j2sdk1.4.2_05\jre\bin\java.dll
0x00A00000 - 0x00A0D000 D:\j2sdk1.4.2_05\jre\bin\zip.dll
0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
0x6D510000 - 0x6D590000 C:\WINDOWS\system32\DBGHELP.dll
0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll
0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
Heap at VM Abort:
Heap
def new generation total 576K, used 198K [0x10010000, 0x100b0000, 0x104f0000)
eden
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x00c3d212
SIGNAL = -1073741678
FUNCTION NAME = (N/A)
OFFSET = 0xFFFFFFFF
LIBRARY NAME = (N/A)
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
this is all it shows i have tested this code in other machine works fine

Sounds like something broke with javac itself. Try using [url http://www-124.ibm.com/developerworks/oss/jikes/]jikes instead. It's much faster and makes better compile time optimizations then javac.

Similar Messages

  • I HAVE A MAC BOOK AND I CAN GET TO WORK THE CD 1 IT DOESN'T READ AND ONLY APPEAR A ICON LIKE A FOLDER WIR ONE QUESTION MARK, CAN SOME BODY HELP?

    I HAVE A MAC LAP TOP MAC BOOK AND  WANT JUST TO REINSTALL THE SOFTWARE I DONT CARE ABOUT MY FILES I HAVE BACK UP BUT WHEN I INSERT THE DISK VERSION 10.5 WHICH COMES WITH MY COMPUTER DOESN'T WANT TO READ I HEARD THA IS TRYING BUT NOTHING,
    CAN SOME BODY HELP ME...

    There is a possibility that the disk drive could be broken, if it just spits it back out that usually means its toast. If your MacBook has a Core 2 Duo processor, you can install Lion (via a thumb drive not disks). Here is a link to the Lion thumb drive.You can also still order them for $19.99 by calling 1-800-MY-APPLE. Also you can borrow an external disk drive and try the Leopard disks that way as well.
    Good Luck!

  • Some body help me? I lost my notes, but i need recover them in my computer, no in mi iphone. I prefeer in Spanish...sorry

    some body help me? I lost my notes, but i need recover them in my computer, no in my iphone. I prefeer in Spanish...sorry, well I don´t lost,, I have a backup in the pc, but I don´t know how recover.

    If you backed up your phone to your computer, your backup should contain your notes.  To recover them, you will have to restore your phone to the entire backup.  To restore to your backup, connect your phone to your computer, open iTunes, click on the name of your phone, go to the Summary tab of your iTunes sync settings, then click on Restore Backup under Manually Back Up and Restore.
    Google Translate:
    Si usted copia de seguridad de su teléfono al ordenador, la copia de seguridad debe contener las notas. Para recuperarlos, tendrás que restaurar el teléfono a la copia de seguridad completa. Para restaurar la copia de seguridad, conecte el teléfono al ordenador, abre iTunes, haz clic en el nombre de su teléfono, vaya a la pestaña Resumen de la configuración de sincronización de iTunes, a continuación, haga clic en Restaurar copia de seguridad bajo manualmente una copia de seguridad y restauración.

  • Can some body help me to develop labview code for generating pulse to drive ac servo motor

    can some body help me to develop labview code for generating pulse to drive ac servo motor... i am using NI 9401 card ....tnx

    Driving an AC servo motor would (I missed AC on the previous msg) requires some complex hardware. This is generally done by drivers specifically designed for this purpose. I doubt you will be able to accomplish this with the hardware you currently have and it might be cheaper to just buy a driver for it and control the speed through the driver.

  • Can some body help me? yesterday I format my iphone and it have been more than 24 hours a litlle circle moving

    can some body help me? yesterday I format my iphone and it have been more than 24 hours a litlle circle moving

    Reset, hold both the Home and Power buttons for about 10 seconds until the iPhone begins to start. If still problem, and your decide to Restore your iPhone, try DFU Mode Restore. Open iTunes on computer. Connect iPhone to computer with USB cable. Hold both Home and Power button, after exactly 10 seconds release the Power Button, keep holding the Home button until iTunes recognizes iPhone in Recovery Mode, usually about 20 seconds time.

  • Hi, folks can some body help me¡  How  I can  use  de second  code  to  the  Itunes card  to  use  the  Itunes card.... My  number is vanished, how  i can submit  my  Itunes card?

    Hi, folks can some body help me¡  How  I can  use  de second  code  to  the  Itunes card  to  use  the  Itunes card.... My  number is vanished, how  i can submit  my  Itunes card?

    iTunes Store: Invalid, inactive, or illegible codes
    http://support.apple.com/kb/TS1292

  • Can some body help me reg. BAPI_USER_LOCK

    Hi,
    I am using  this FM BAPI_USER_LOCK   to lock firecall id's .But it is not working in 4.0 B version.
    Can some body help me any alterante FM for the FM.
    Thanks

    Hi,
    Below are the notes for this Function module.
    You can unlock user USERNAME with the method Unlock.
    The method is fully integrated in the central user administration system.
    If the method is called in a sytem that belongs to a group for central user maintenance, the method behaves accordingly.
    If the method is called in the central system of this type of system group, this triggers user distribution.
    The user is also locked in the dependent systems.
    The prerequisite for this is that the field maintenance attributes (Transaction SCUM) are set.
    You need to do the prerequistie for running this BAPI.
    With Regards,
    Sumodh.P

  • Hello can some body help me on my icloud app.i cannot send an email with iCloud

    Hello
    can some body help me on my icloud app.i cannot send an email with iCloud
    excuse me my english

    Hello
    thanks for your prompt response
    yes i defined an account for icloud
    Regards
    Faisal Djama

  • My iphone 4 is dislabed at the moment please some body help, my iphone 4 is dislabed at the moment please some body help

    my iphone 4 is dislabed at the moment please some body help, my iphone 4 is dislabed at the moment please some body help

    Do as the manual says and restore the iphone.

  • I renew my itunes match and all the old information was lost can some body help me ?

    i renew my i tunes match and all the old information was lost can some body help me ?
    a few month ago i had all my songs on the cloud with i tunes match
    than apple has change their policy and they wanted 24.99 for a year
    after two month i renew my i tunes match but all my information was lost and now i cant play and sync all the music a had
    any body had this problem ?  any body solved it ?

    Greetings yoavfromseattle,
    Welcome to the Apple Support Communities!
    I understand that after renewing your iTunes Match subscription, you are not able to access your music as you would expect. To troubleshoot this situation, I would recommend reading over and working through the information in the attached article. 
    How to troubleshoot iTunes Match - Apple Support
    Cheers,
    Joe

  • Pages is deactivating iCloud alone, can some body help me

    pages is deactivating iCloud alone, can some body help me

    I am having a similar problem. When I try to open pages, it opens and then quits immediately.  It is only when with iCloud. So what's going on with the Pages app? Needs to be corrected SOON!

  • Error message while compling the following code.can some body help me?

    Hi all,
    I wrote a simple program which connects to oracle 9i which uses thin driver,
    the following code is
    import java.io.*;
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.sql.*;
    import javax.sql.*;
    class JdbcVersion
    public static void main (String args[])
    throws IOException, SQLException
         //Register Oracle's Driver
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         //Build the connection string.
         String connString ="jdbc:oracle:thin:@(description=(address_list=" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0))" +
    "(address=(protocol=tcp)(port=1521)(host=home-f831b673e0)))" +
    "(connect_data=(sid=PLSExtProc))" +
    "(source_route=yes))";
    Connection conn = DriverManager.getConnection(connString, "<username>", "<password>");
    // Create Oracle DatabaseMetaData object
    DatabaseMetaData meta = conn.getMetaData();
    // gets driver info:
    System.out.println("JDBC driver version is " + meta.getDriverVersion());
    and after compling this code i am getting an error message that
    C:\>java JdbcVersion
    Exception in thread "main" java.sql.SQLException: Io exception: Software caused
    connection abort: recv failed
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at JdbcVersion.main(JdbcVersion.java:24)..
    can any one help me in this regards??

    hi nthali,
    now i wote a simple code as you suggested....and again encontering with new problem
    import oracle.jdbc.*;
    import java.sql.*;
    public class Test {
    public Test() {
    public static void main(String[] args) {
    Test test1 = new Test();
    test1.test();
    public void test(){
    try{
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:Oracle:thin:@localhost:PNPKEY:'scott':'tiger'");
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery("select * from player");
    while(rs.next()){
    System.out.println(rs.getString("id"));
    // System.out.println(rs.getString("name"));
    catch(Exception e){
    e.printStackTrace();
    this is java code...
    and while running it is giving me an error like this....
    C:\work>java Test
    java.sql.SQLException: invalid arguments in call
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.check_error(DBError.java)
    at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at Test.test(Test.java:14)
    at Test.main(Test.java:9)...
    can you help me??? in this problem...please??

  • MSS Iview error - Any  body  help me - Very urgent

    Hello All,
    I've configured ESS BP in my Portal successfully and it's running perfectly fine. Now i've imported MSS also without any problems. Now the issue is when i'm launching the My Staff iViews it gives me a message "Could not connect to the R/3 System" . These iViews using the system object "SAP_R3_HumanResources" which has been used by the ESS iViews also. Now ESS iViews are working fine with the same system object but MSS iviews are giving me the error message.
    My System landscape :
    MSS BP Installed: BPMSS601_19-20001489
    R3- 4.6C
    Portal : EP6 Sp11
    WAS: 6.40
    Any help will be highly appreciated.

    Hello All,
    I've configured ESS BP in my Portal successfully and it's running perfectly fine. Now i've imported MSS also without any problems. Now the issue is when i'm launching the My Staff iViews it gives me a message "Could not connect to the R/3 System" . These iViews using the system object "SAP_R3_HumanResources" which has been used by the ESS iViews also. Now ESS iViews are working fine with the same system object but MSS iviews are giving me the error message.
    My System landscape :
    MSS BP Installed: BPMSS601_19-20001489
    R3- 4.6C
    Portal : EP6 Sp11
    WAS: 6.40
    Any help will be highly appreciated.

  • Help Some body Help

    I have used Photoshop elements for 4 Years up to now I thought it was Wonderful ,
    I changed my operating system to Vista and now Windows 7.
    At some point I lost my Elements 6 by not beIng able to download any pictures,it seemed as though I only had the right hand section on the screen.
    I decided to buy another Elements 6 as I had mislaid the first one.
    When  I came to  download this at first I hada box cone up to say I had no CPP File and I coulld not continue,
    I tried many time Since but the last time I got through that part of the instal only  to be told I had to close down Firefox that's where its all came to a halt, I can't find out How to do this, and I am concerned even if  I do will it finally download so I GeT on with my job.
    Is there anyone out there who can help me

    As previously mentioned, many people have reported that PSE 6 and 7 run fine on Windows 8.  To troubleshoot problems, first try running them in the various compatibility modes provided by Windows 7:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Run_in_Vista
    If that doesn't help, you could try the more general troubleshooting (your problems could be well be independent of Windows 7):
    Organizer: http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Troubleshooting_Organizer_ crashes
    Editor: http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Troubleshooting_Editor_cra shes
    If that doesn't help, or you find it not worth your time, you could try downloading the free 30-day trial of PSE 8 from Adobe.com and if it works, then buy a serial number.  PSE 8 is the only version for which Adobe provides customer support on Windows 7 (though their customer support isn't very helpful anymore).

  • Please Some body Help

    I have mac Book pro i recently format hardisk and install windows 7 and now i have only windows 7 on my mac book pro now i want to remove windows 7 and only install MAC OS x lion but i dont know how can I.If any body can help me?

    The only solution I see is for you to purchase a Mac OS X 10.6 Snow Leopard DVD ($29)  from Apple and then purchase a Lion upgrade ($29) from the App store if you want Lion. If you wish to go directly to Lion then purchase the OS X Lion USB thumb drive ($69). 
    There is no free solution that I am aware of.
    Once you get the Mac back then make a bootable clone to an external drive with Carbon Copy Cloner or SuperDuper. This way you will have a readily available solution to many unseen problems.

Maybe you are looking for

  • How Can we get the data from Non-SAP to SAP in WebDynpro

    Hi, I hope u understand my query, How can we get the data from Non-SAP to SAP thru WebDynpro Programming. Help out with the steps for getting the data or procedure. Regards, Mutyapu

  • Duplicates in iTunes folder on Finder?

    So, yesterday, I reinstalled the OS because my computer was having problems and running out of space, transferring over nothing other than the iPhoto, iTunes, and a couple of other apps. I used an external drive to hold those files. Then, I moved the

  • ESB Integration with Service Registry

    Hi, Can somebody please post links to the documentation for ESB to Oracle Service Registry integration for dynamic endpoint lookup. I was able to do it with BPEL but same steps are not working for ESB. Thanks Kishor

  • IPad & iPhone Hotmail Folders Empty

    iPhone & iPad folders empty Sometime recently, perhaps after updating my iPhone and iPad to iOS 6, I noticed mail is missing from many of my HotMail folders on those devices. My account is set up as an Exchange account. I have since deleted it from m

  • Newbie really needing help

    I am learning to use flash and the first project I choose was a fireworks display. I am doing ok except one area that I keep getting stuck in. Using the paint bucket fill tool. I am trying to fill an area that I made with the line tool with a gradien