IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Java Discussion :

[JVM] crash de la JVM


Sujet :

Java

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut [JVM] crash de la JVM
    je suis débutant en java. j'ai un petit prob quand je compil ce code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
     
    //AppletAddition
    import java.awt.Graphics;
    import javax.swing.*;
     
    public class AppletAddition extends JApplet
    {
     double somme;
     public void init()
     {
      String premierNombre;
      String secondNombre;
      double nombre1;
      double nombre2;
     
      premierNombre = JOptionPane.showInputDialog("Entrez le premier nombre");
      secondNombre = JOptionPane.showInputDialog("Entrez le second nombre");
     
      //Convertion de type
      nombre1 = Double.parseDouble(premierNombre);
      nombre2 = Double.parseDouble(secondNombre);
     
      //Addition
      somme = nombre1 + nombre2;
     }
     
     public void paint(Graphics g)
     {
      super.paint(g);
      g.drawRect(15, 10, 270, 20);
      g.drawString("La somme vaut : "+somme+"!",25,25);
     }
    }
    Et voici le message que j'ai quand je fais javac AppletAddition.java:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
    #
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #
    #  EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00c50758, pid=3284, tid=4076
    #
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode)
    # Problematic frame:
    # v  ~RuntimeStub::load_klass_patching Runtime1 stub
    #
    pouvez vous m'aider svp

    [ Sujet déplacé depuis le forum java par Viena ]
    Les Règles du Forum

  2. #2
    Membre expert

    Homme Profil pro
    Consultant informatique
    Inscrit en
    Janvier 2004
    Messages
    2 301
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Consultant informatique
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2004
    Messages : 2 301
    Points : 3 675
    Points
    3 675
    Par défaut
    chez moi ça marche...

    essaie de réinstaller le jdk

  3. #3
    Membre expérimenté
    Avatar de zekey
    Profil pro
    Inscrit en
    Février 2005
    Messages
    1 036
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2005
    Messages : 1 036
    Points : 1 403
    Points
    1 403
    Par défaut
    Pour developper un peu, l'erreur que tu as n'est pas une erreur de compilation java mais une erreur d'execution de la commande javac.
    En fait c'est un crash de la jvm, essayes de reinstaller comme le dit Pill_S.
    Si ca ne fonctionne pas il va falloir soit jouer avec le options de la jvm genre -client -server -Xmx etc.... soit changer de machine

  4. #4
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut
    je suis debutant, je ne comprends rien

    les options encore moins

    personne ne saurait m'aider concretement?

    Merci beaucoup d'avance

  5. #5
    Membre expert

    Homme Profil pro
    Consultant informatique
    Inscrit en
    Janvier 2004
    Messages
    2 301
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Consultant informatique
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2004
    Messages : 2 301
    Points : 3 675
    Points
    3 675
    Par défaut
    Citation Envoyé par xavdj
    personne ne saurait m'aider concretement?
    concrètement ? le compilateur est mort...

    tu vas dans panneau de config --> Ajout/supp. de programmes --> J2SE Machin truc --> tu désinstalles

    ensuite tu vas sur le site de sun, tu télécharges la dernière version ( http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=jdk-1.5.0_06-oth-JPR&SiteId=JSC&TransactionId=noreg ) et tu réinstalles


  6. #6
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut
    j'ai réussi résoudre le probleme. mais en continuant mes exercices, ca à recommencer avec les meme messages d'erreurs.

    que dois-je faire pour eviter cette erreur?

  7. #7
    Expert éminent sénior


    Profil pro
    Inscrit en
    Mai 2003
    Messages
    3 240
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 3 240
    Points : 11 101
    Points
    11 101
    Par défaut
    As tu réinstallé la JVM ?

  8. #8
    Membre régulier Avatar de dinver
    Profil pro
    Inscrit en
    Décembre 2002
    Messages
    122
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2002
    Messages : 122
    Points : 110
    Points
    110
    Par défaut
    Citation Envoyé par xavdj
    j'ai réussi résoudre le probleme. mais en continuant mes exercices, ca à recommencer avec les meme messages d'erreurs.

    que dois-je faire pour eviter cette erreur?
    Tu as résolu le problème en réinstallant la JDK ? Si c'est le cas et que au bout d'un certain temps tu te trouves de nouveau avec un JDK corrompu c'est que soit ton disque est en mauvais état soit que ton poste est infecté ! Essaye d'expliquer davantage qu'est-ce que tu as fait exactement pour que ca marche et après quels manpulations tu as fait pour que ça ne remarche plus.

  9. #9
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut
    j'ai encore le même probleme. Apres avoir réinstallé 3-4 fois, ca va de temps en temps. Quand il y a des erreur de compil, ca me le dis et une fois corriger, ca me remet ce message d'erreur :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    #
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #
    #  EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00c50758, pid=2708, tid=1852
    #
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode, sharing)
    # Problematic frame:
    # v  ~RuntimeStub::load_klass_patching Runtime1 stub
    #
    # An error report file with more information is saved as hs_err_pid2708.log
    #
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    #

  10. #10
    Membre chevronné
    Profil pro
    Fabrication GED
    Inscrit en
    Octobre 2005
    Messages
    1 405
    Détails du profil
    Informations personnelles :
    Âge : 45
    Localisation : France, Seine Maritime (Haute Normandie)

    Informations professionnelles :
    Activité : Fabrication GED

    Informations forums :
    Inscription : Octobre 2005
    Messages : 1 405
    Points : 1 958
    Points
    1 958
    Par défaut
    peux-tu nous faire parvenir un extrait du fichier mensionné : hs_err_pid2708.log ?

    +1, J'ai jamais vu ça moi non plus. Je penche aussi pour un pb de jvm...

  11. #11
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut
    #
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00c50758, pid=2708, tid=1852
    #
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode, sharing)
    # Problematic frame:
    # v ~RuntimeStub::load_klass_patching Runtime1 stub
    #

    --------------- T H R E A D ---------------

    Current thread (0x00265e60): JavaThread "main" [_thread_in_Java, id=1852]

    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x0006ece0

    Registers:
    EAX=0x26a9d670, EBX=0x00000006, ECX=0x22fb7578, EDX=0x00c7ff3d
    ESP=0x0006ece0, EBP=0x0006edb8, ESI=0x22ade4e8, EDI=0x0000059b
    EIP=0x00c50758, EFLAGS=0x00010202

    Top of Stack: (sp=0x0006ece0)
    0x0006ece0: 00000001 0006ed60 6d7cd5cf 00000000
    0x0006ecf0: 00c84aaf 0006ed60 6d7cd551 00c84aaf
    0x0006ed00: 00c84ab0 0006ee14 00c84aaf 00000000
    0x0006ed10: 0006edbc 6d7cdb29 00000000 00000001
    0x0006ed20: ffff1272 ffff0022 ffffffff 00bfd6e5
    0x0006ed30: 073c001b 0006f020 ffff0023 005c006e
    0x0006ed40: 0061006a 00450076 00450058 00000000
    0x0006ed50: 00000000 00000000 00000000 00000000

    Instructions: (pc=0x00c50758)
    0x00c50748: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00c50758: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20


    Stack: [0x00030000,0x00070000), sp=0x0006ece0, free space=251k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~RuntimeStub::load_klass_patching Runtime1 stub
    J com.sun.tools.javac.jvm.ClassReader.readPool(I)Ljava/lang/Object;
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j com.sun.tools.javac.jvm.ClassReader.readMemberAttr(Lcom/sun/tools/javac/code/Symbol;Lcom/sun/tools/javac/util/Name;I)V+16
    J com.sun.tools.javac.jvm.ClassReader.readMemberAttrs(Lcom/sun/tools/javac/code/SymbolV
    j com.sun.tools.javac.jvm.ClassReader.readField()Lcom/sun/tools/javac/code/Symbol$VarSymbol;+49
    J com.sun.tools.javac.jvm.ClassReader.readClass(Lcom/sun/tools/javac/code/Symbol$ClassSymbolV
    j com.sun.tools.javac.jvm.ClassReader.readClassFile(Lcom/sun/tools/javac/code/Symbol$ClassSymbolV+170
    j com.sun.tools.javac.jvm.ClassReader.fillIn(Lcom/sun/tools/javac/code/Symbol$ClassSymbolV+217
    j com.sun.tools.javac.jvm.ClassReader.complete(Lcom/sun/tools/javac/code/SymbolV+35
    j com.sun.tools.javac.code.Symbol.complete()V+19
    j com.sun.tools.javac.code.Symbol$ClassSymbol.complete()V+1
    j com.sun.tools.javac.jvm.ClassReader.loadClass(Lcom/sun/tools/javac/util/NameLcom/sun/tools/javac/code/Symbol$ClassSymbol;+40
    j com.sun.tools.javac.comp.Resolve.loadClass(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/util/NameLcom/sun/tools/javac/code/Symbol;+5
    j com.sun.tools.javac.comp.Resolve.findGlobalType(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/code/Scope;Lcom/sun/tools/javac/util/NameLcom/sun/tools/javac/code/Symbol;+31
    j com.sun.tools.javac.comp.Resolve.findType(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/util/NameLcom/sun/tools/javac/code/Symbol;+436
    j com.sun.tools.javac.comp.Resolve.findIdent(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/util/Name;I)Lcom/sun/tools/javac/code/Symbol;+57
    j com.sun.tools.javac.comp.Resolve.resolveIdent(ILcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/util/Name;I)Lcom/sun/tools/javac/code/Symbol;+6
    j com.sun.tools.javac.comp.Attr.visitIdent(Lcom/sun/tools/javac/tree/Tree$IdentV+137
    j com.sun.tools.javac.tree.Tree$Ident.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.visitSelect(Lcom/sun/tools/javac/tree/Tree$SelectV+107
    j com.sun.tools.javac.tree.Tree$Select.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribExpr(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+6
    j com.sun.tools.javac.comp.Attr.visitApply(Lcom/sun/tools/javac/tree/Tree$ApplyV+529
    j com.sun.tools.javac.tree.Tree$Apply.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribExpr(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+6
    j com.sun.tools.javac.comp.Attr.visitAssign(Lcom/sun/tools/javac/tree/Tree$AssignV+37
    j com.sun.tools.javac.tree.Tree$Assign.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribExpr(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/EnvLcom/sun/tools/javac/code/Type;+8
    j com.sun.tools.javac.comp.Attr.visitExec(Lcom/sun/tools/javac/tree/Tree$ExecV+9
    j com.sun.tools.javac.tree.Tree$Exec.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribStat(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/EnvLcom/sun/tools/javac/code/Type;+7
    j com.sun.tools.javac.comp.Attr.attribStats(Lcom/sun/tools/javac/util/List;Lcom/sun/tools/javac/comp/EnvV+18
    j com.sun.tools.javac.comp.Attr.visitBlock(Lcom/sun/tools/javac/tree/Tree$BlockV+198
    j com.sun.tools.javac.tree.Tree$Block.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribStat(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/EnvLcom/sun/tools/javac/code/Type;+7
    j com.sun.tools.javac.comp.Attr.visitMethodDef(Lcom/sun/tools/javac/tree/Tree$MethodDefV+864
    j com.sun.tools.javac.tree.Tree$MethodDef.accept(Lcom/sun/tools/javac/tree/Tree$VisitorV+2
    j com.sun.tools.javac.comp.Attr.attribTree(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/Env;ILcom/sun/tools/javac/code/TypeLcom/sun/tools/javac/code/Type;+36
    j com.sun.tools.javac.comp.Attr.attribStat(Lcom/sun/tools/javac/tree/Tree;Lcom/sun/tools/javac/comp/EnvLcom/sun/tools/javac/code/Type;+7
    j com.sun.tools.javac.comp.Attr.attribClassBody(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/code/Symbol$ClassSymbolV+367
    j com.sun.tools.javac.comp.Attr.attribClass(Lcom/sun/tools/javac/code/Symbol$ClassSymbolV+355
    j com.sun.tools.javac.comp.Attr.attribClass(ILcom/sun/tools/javac/code/Symbol$ClassSymbolV+9
    j com.sun.tools.javac.main.JavaCompiler.compile(Lcom/sun/tools/javac/util/ListLcom/sun/tools/javac/util/List;+338
    j com.sun.tools.javac.main.Main.compile([Ljava/lang/String;Lcom/sun/tools/javac/util/ContextI+350
    j com.sun.tools.javac.main.Main.compile([Ljava/lang/StringI+9
    j com.sun.tools.javac.Main.compile([Ljava/lang/StringI+12
    j com.sun.tools.javac.Main.main([Ljava/lang/StringV+102
    v ~StubRoutines::call_stub
    V [jvm.dll+0x845a9]
    V [jvm.dll+0xd9317]
    V [jvm.dll+0x8447a]
    V [jvm.dll+0x8b44a]
    C [javac.exe+0x14d5]
    C [javac.exe+0x66fd]
    C [kernel32.dll+0x214c7]


    --------------- P R O C E S S ---------------

    Java Threads: ( => current thread )
    0x00b8e608 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1032]
    0x00b8d090 JavaThread "CompilerThread0" daemon [_thread_blocked, id=556]
    0x00b8ce70 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2724]
    0x0026fd00 JavaThread "Finalizer" daemon [_thread_blocked, id=2720]
    0x0026faa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2712]
    =>0x00265e60 JavaThread "main" [_thread_in_Java, id=1852]

    Other Threads:
    0x00b58748 VMThread [id=1532]
    0x00b8f848 WatcherThread [id=2728]

    VM state:not at safepoint (normal execution)

    VM Mutex/Monitor currently owned by a thread: None

    Heap
    def new generation total 576K, used 572K [0x22a60000, 0x22b00000, 0x22f40000)
    eden
    [error occurred during error reporting, step 190, id 0xc0000092]

    Dynamic libraries:
    0x00400000 - 0x0040e000 C:\Program Files\Java\jdk1.5.0_06\bin\javac.exe
    0x77f40000 - 0x77fee000 C:\WINDOWS\System32\ntdll.dll
    0x77e40000 - 0x77f36000 C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e3e000 C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78086000 C:\WINDOWS\system32\RPCRT4.dll
    0x77be0000 - 0x77c33000 C:\WINDOWS\system32\MSVCRT.dll
    0x00280000 - 0x002f3000 C:\DOCUME~1\xavier\LOCALS~1\Temp\swa2.tmp
    0x77300000 - 0x7738b000 C:\WINDOWS\system32\COMCTL32.DLL
    0x77c40000 - 0x77c80000 C:\WINDOWS\system32\GDI32.dll
    0x77d10000 - 0x77d9c000 C:\WINDOWS\system32\USER32.dll
    0x71a60000 - 0x71a71000 C:\WINDOWS\system32\MPR.DLL
    0x77170000 - 0x77291000 C:\WINDOWS\system32\OLE32.DLL
    0x770e0000 - 0x7716b000 C:\WINDOWS\system32\OLEAUT32.DLL
    0x71a10000 - 0x71a19000 C:\WINDOWS\System32\WSOCK32.DLL
    0x719f0000 - 0x71a05000 C:\WINDOWS\System32\WS2_32.dll
    0x719e0000 - 0x719e8000 C:\WINDOWS\System32\WS2HELP.dll
    0x6d6e0000 - 0x6d874000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\client\jvm.dll
    0x76ae0000 - 0x76b0e000 C:\WINDOWS\System32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\hpi.dll
    0x76ba0000 - 0x76bab000 C:\WINDOWS\System32\PSAPI.DLL
    0x6d6b0000 - 0x6d6bc000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\java.dll
    0x6d6d0000 - 0x6d6df000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\zip.dll

    VM Arguments:
    jvm_args: -Dapplication.home=C:\Program Files\Java\jdk1.5.0_06 -Xms8m -Xss4m -ea:com.sun.tools...
    java_command: com.sun.tools.javac.Main AppletCalcul.java
    Launcher Type: SUN_STANDARD

    Environment Variables:
    PATH=C:\Program Files\Java\jdk1.5.0_06\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Fichiers communs\Adobe\AGL;C:\Program Files\Fichiers communs\STOPzilla!;;C:\DOCUME~1\xavier\LOCALS~1\Temp\uninsta
    USERNAME=xavier
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 6, GenuineIntel



    --------------- S Y S T E M ---------------

    OS: Windows XP Build 2600 Service Pack 1

    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse, sse2

    Memory: 4k page, physical 1047920k(721120k free), swap 2521120k(2250952k free)

    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

  12. #12
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    9
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2005
    Messages : 9
    Points : 2
    Points
    2
    Par défaut
    est ce que quelqu'un peut m'aider? merci

  13. #13
    Membre régulier Avatar de dinver
    Profil pro
    Inscrit en
    Décembre 2002
    Messages
    122
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2002
    Messages : 122
    Points : 110
    Points
    110
    Par défaut
    C'est la jvm qui crash. Est-ce que en exécutant un programme java simple (hello world, somme, ...) sa crash ou non ? Sinon, quel est le code java que tu executes pour que sa crash ?

    A mon avis, même si je ne suis pas expert, il faut arriver à déterminer la source du problème est-ce que le problème est dû à un mauvais fonctionnement du système ou du matiérien, ou bien c'est seulement la JVM qui pose problème. Si c'est le dernier cas alors est-ce pour tout les programmes java ou en invoquant quelques classe seulement.

    Pense à télécharger de nouveau la JVM et de l'installer, peut être que le fichier d'installation que tu utilises et corrompus et ne permet pas d'installer tous les fichiers avec succès. (Je penche pour cette dernière solution à éssayer absoluement). Comme quoi l'informatique n'est pas une science exact il faut tatonner pour trouver la cause des problèmes ça me rapelle les médecins !

  14. #14
    Membre régulier Avatar de dinver
    Profil pro
    Inscrit en
    Décembre 2002
    Messages
    122
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2002
    Messages : 122
    Points : 110
    Points
    110
    Par défaut
    Essaye de tester ta JVM sur cette page :
    http://java.com/fr/download/help/testvm.xml

Discussions similaires

  1. Crash de la JVM avec insertRow
    Par croquette06 dans le forum JDBC
    Réponses: 4
    Dernier message: 07/01/2011, 09h55
  2. problème de JVM crash
    Par choko83 dans le forum Langage
    Réponses: 2
    Dernier message: 17/02/2010, 14h17
  3. Tests unitaire GWT via GWTTestCase + JVM crash
    Par niamande dans le forum GWT et Vaadin
    Réponses: 1
    Dernier message: 06/07/2009, 17h53
  4. Erreur JVM crash
    Par pjmorce dans le forum Général Java
    Réponses: 5
    Dernier message: 28/10/2008, 12h22
  5. Crash de ma JVM
    Par key81190 dans le forum JDBC
    Réponses: 13
    Dernier message: 06/05/2008, 14h54

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo