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

avec Java Discussion :

Erreur Java Avec Eclipse


Sujet :

avec Java

  1. #1
    Membre averti Avatar de solaar
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    607
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Côte d'Ivoire

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Septembre 2007
    Messages : 607
    Points : 314
    Points
    314
    Par défaut Erreur Java Avec Eclipse
    Bonjour,

    j'arrive pas à comprend l'erreur de mon code Java ... j'ai besoin d'aide ... pour comprendre ce qui ne va pas.

    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
     
     
    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000072bc0170, pid=5840, tid=0x00000000000036b8
    #
    # JRE version: Java(TM) SE Runtime Environment (8.0_112-b15) (build 1.8.0_112-b15)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.112-b15 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # V  [jvm.dll+0x140170]
    #
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    #
    # An error report file with more information is saved as:
    # C:\Users\mcs\workspace\ACOS3\bin\hs_err_pid5840.log
    #
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.java.com/bugreport/crash.jsp

  2. #2
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    Tu as regardé dans le fichier C:\Users\mcs\workspace\ACOS3\bin\hs_err_pid5840.log ? Il y a quoi ?
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  3. #3
    Membre averti Avatar de solaar
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    607
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Côte d'Ivoire

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Septembre 2007
    Messages : 607
    Points : 314
    Points
    314
    Par défaut
    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
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
     
    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000072bc0170, pid=5840, tid=0x00000000000036b8
    #
    # JRE version: Java(TM) SE Runtime Environment (8.0_112-b15) (build 1.8.0_112-b15)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.112-b15 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # V  [jvm.dll+0x140170]
    #
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    #
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.java.com/bugreport/crash.jsp
    #
     
    ---------------  T H R E A D  ---------------
     
    Current thread (0x0000000019f8b000):  JavaThread "AWT-EventQueue-1" [_thread_in_vm, id=14008, stack(0x000000001ada0000,0x000000001aea0000)]
     
    siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
     
    Registers:
    RAX=0x0000000000000000, RBX=0x0000000019f8b000, RCX=0x0000000019f8b000, RDX=0x00000000d67242d8
    RSP=0x000000001ae9c910, RBP=0x000000001ae9ca90, RSI=0xcd00000100000000, RDI=0x0000000000000000
    R8 =0x0000000000000000, R9 =0xcd00000100000000, R10=0x00007ffc76ad88c0, R11=0x000000001ae9c990
    R12=0x0000000000000000, R13=0x000000001aedc530, R14=0x000000001ae9cad0, R15=0x0000000019f8b000
    RIP=0x0000000072bc0170, EFLAGS=0x0000000000010246
     
    Top of Stack: (sp=0x000000001ae9c910)
    0x000000001ae9c910:   000000001aedc530 000000001ae9ca90
    0x000000001ae9c920:   0000000000000000 0000000000000000
    0x000000001ae9c930:   0000000000000000 0000000000afca00
    0x000000001ae9c940:   000000001aba3b00 cccccccccccccccc
    0x000000001ae9c950:   0000000019f8b000 00000000190e7208
    0x000000001ae9c960:   0000000000000b95 0000000073084d60
    0x000000001ae9c970:   000000001ae9c9a0 0000000180002ae4
    0x000000001ae9c980:   cccccccccccccccc 000000001aedc530
    0x000000001ae9c990:   00000000006b3920 cccccccccccccccc
    0x000000001ae9c9a0:   000000001ae9c9f0 0000000180001710
    0x000000001ae9c9b0:   0000000019f8b1f8 0000000019091ba0
    0x000000001ae9c9c0:   0000000000000000 cd00000100000000
    0x000000001ae9c9d0:   cccccccc00000000 0000000019091ba0
    0x000000001ae9c9e0:   0000000000000000 cccccccccccccccc
    0x000000001ae9c9f0:   00000000117d7000 0000000002837f74
    0x000000001ae9ca00:   0000000019f8b1f8 000000001ae9cad0 
     
    Instructions: (pc=0x0000000072bc0170)
    0x0000000072bc0150:   24 38 c6 44 24 30 4a 33 d2 48 8b cb c6 44 24 28
    0x0000000072bc0160:   01 48 89 74 24 70 48 89 7c 24 20 e8 b0 bc 07 00
    0x0000000072bc0170:   48 8b 07 48 63 57 10 48 8b 48 68 48 89 34 0a 48
    0x0000000072bc0180:   83 7c 24 48 00 74 0a 48 8d 4c 24 40 e8 1f b5 13 
     
     
    Register to memory mapping:
     
    RAX=0x0000000000000000 is an unknown value
    RBX=0x0000000019f8b000 is a thread
    RCX=0x0000000019f8b000 is a thread
    RDX=0x00000000d67242d8 is an oop
    java.lang.NoSuchFieldError 
     - klass: 'java/lang/NoSuchFieldError'
    RSP=0x000000001ae9c910 is pointing into the stack for thread: 0x0000000019f8b000
    RBP=0x000000001ae9ca90 is pointing into the stack for thread: 0x0000000019f8b000
    RSI=0xcd00000100000000 is an unknown value
    RDI=0x0000000000000000 is an unknown value
    R8 =0x0000000000000000 is an unknown value
    R9 =0xcd00000100000000 is an unknown value
    R10=0x00007ffc76ad88c0 is an unknown value
    R11=0x000000001ae9c990 is pointing into the stack for thread: 0x0000000019f8b000
    R12=0x0000000000000000 is an unknown value
    R13={method} {0x000000001aedc538} 'SCardEstablishContext' '(IIII)I' in 'JacspcscLoader'
    R14=0x000000001ae9cad0 is pointing into the stack for thread: 0x0000000019f8b000
    R15=0x0000000019f8b000 is a thread
     
     
    Stack: [0x000000001ada0000,0x000000001aea0000],  sp=0x000000001ae9c910,  free space=1010k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V  [jvm.dll+0x140170]
    C  [Jacspcsc.dll+0x2ae4]
    C  [Jacspcsc.dll+0x1710]
    C  0x0000000002837f74
     
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  JacspcscLoader.SCardEstablishContext(IIII)I+0
    j  JacspcscLoader.jSCardEstablishContext(III[I)I+7
    j  ACOS3Account.actionPerformed(Ljava/awt/event/ActionEvent;)V+22
    j  javax.swing.AbstractButton.fireActionPerformed(Ljava/awt/event/ActionEvent;)V+83
    j  javax.swing.AbstractButton$Handler.actionPerformed(Ljava/awt/event/ActionEvent;)V+5
    j  javax.swing.DefaultButtonModel.fireActionPerformed(Ljava/awt/event/ActionEvent;)V+34
    j  javax.swing.DefaultButtonModel.setPressed(Z)V+117
    j  javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Ljava/awt/event/MouseEvent;)V+35
    j  java.awt.Component.processMouseEvent(Ljava/awt/event/MouseEvent;)V+64
    j  javax.swing.JComponent.processMouseEvent(Ljava/awt/event/MouseEvent;)V+23
    j  java.awt.Component.processEvent(Ljava/awt/AWTEvent;)V+81
    j  java.awt.Container.processEvent(Ljava/awt/AWTEvent;)V+18
    j  java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+589
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.LightweightDispatcher.retargetMouseEvent(Ljava/awt/Component;ILjava/awt/event/MouseEvent;)V+327
    j  java.awt.LightweightDispatcher.processMouseEvent(Ljava/awt/event/MouseEvent;)Z+155
    j  java.awt.LightweightDispatcher.dispatchEvent(Ljava/awt/AWTEvent;)Z+50
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+12
    j  java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+19
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+41
    j  java.awt.EventQueue.access$500(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j  java.awt.EventQueue$3.run()Ljava/lang/Void;+32
    j  java.awt.EventQueue$3.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    J 467  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x0000000002a21a26 [0x0000000002a219c0+0x66]
    J 472 C1 java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object; (22 bytes) @ 0x0000000002a238ec [0x0000000002a23480+0x46c]
    j  java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+6
    j  java.awt.EventQueue$4.run()Ljava/lang/Void;+11
    j  java.awt.EventQueue$4.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    J 467  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x0000000002a21a26 [0x0000000002a219c0+0x66]
    J 743 C1 java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V (80 bytes) @ 0x0000000002ab68fc [0x0000000002ab5a80+0xe7c]
    J 751 C1 java.awt.EventDispatchThread.pumpOneEventForFilters(I)V (295 bytes) @ 0x0000000002abd1e4 [0x0000000002abb680+0x1b64]
    j  java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+35
    j  java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11
    j  java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j  java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j  java.awt.EventDispatchThread.run()V+9
    v  ~StubRoutines::call_stub
     
    ---------------  P R O C E S S  ---------------
     
    Java Threads: ( => current thread )
    =>0x0000000019f8b000 JavaThread "AWT-EventQueue-1" [_thread_in_vm, id=14008, stack(0x000000001ada0000,0x000000001aea0000)]
      0x0000000019f8e800 JavaThread "TimerQueue" daemon [_thread_blocked, id=13260, stack(0x000000001aca0000,0x000000001ada0000)]
      0x0000000000e5d800 JavaThread "DestroyJavaVM" [_thread_blocked, id=7476, stack(0x0000000002620000,0x0000000002720000)]
      0x000000001910d800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=12520, stack(0x0000000019a50000,0x0000000019b50000)]
      0x00000000190fd000 JavaThread "thread applet-ACOS3MainApplet.class" [_thread_blocked, id=10216, stack(0x0000000019950000,0x0000000019a50000)]
      0x00000000190eb800 JavaThread "AWT-Windows" daemon [_thread_blocked, id=5232, stack(0x0000000019750000,0x0000000019850000)]
      0x00000000190e8000 JavaThread "AWT-Shutdown" [_thread_blocked, id=5524, stack(0x0000000019650000,0x0000000019750000)]
      0x00000000190e5800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4156, stack(0x0000000019480000,0x0000000019580000)]
      0x00000000173fd800 JavaThread "Service Thread" daemon [_thread_blocked, id=11780, stack(0x0000000019120000,0x0000000019220000)]
      0x00000000173cb800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=4640, stack(0x0000000018c20000,0x0000000018d20000)]
      0x00000000173a4800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=6420, stack(0x0000000018b20000,0x0000000018c20000)]
      0x000000001739e800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13232, stack(0x0000000018a20000,0x0000000018b20000)]
      0x000000001739c800 JavaThread "Attach Listener" daemon [_thread_blocked, id=8756, stack(0x0000000018920000,0x0000000018a20000)]
      0x000000001739b800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=13796, stack(0x0000000018820000,0x0000000018920000)]
      0x000000001738a800 JavaThread "Finalizer" daemon [_thread_blocked, id=11796, stack(0x0000000018610000,0x0000000018710000)]
      0x0000000017369000 JavaThread "Reference Handler" daemon [_thread_blocked, id=14060, stack(0x0000000018510000,0x0000000018610000)]
     
    Other Threads:
      0x0000000017367800 VMThread [stack: 0x0000000018410000,0x0000000018510000] [id=1952]
      0x0000000018d53000 WatcherThread [stack: 0x0000000019380000,0x0000000019480000] [id=14228]
     
    VM state:synchronizing (normal execution)
     
    VM Mutex/Monitor currently owned by a thread:  ([mutex/lock_event])
    [0x0000000000e5cbc0] Threads_lock - owner thread: 0x0000000017367800
     
    Heap:
     PSYoungGen      total 38400K, used 13195K [0x00000000d5b80000, 0x00000000d8600000, 0x0000000100000000)
      eden space 33280K, 39% used [0x00000000d5b80000,0x00000000d6862df0,0x00000000d7c00000)
      from space 5120K, 0% used [0x00000000d8100000,0x00000000d8100000,0x00000000d8600000)
      to   space 5120K, 0% used [0x00000000d7c00000,0x00000000d7c00000,0x00000000d8100000)
     ParOldGen       total 87552K, used 0K [0x0000000081200000, 0x0000000086780000, 0x00000000d5b80000)
      object space 87552K, 0% used [0x0000000081200000,0x0000000081200000,0x0000000086780000)
     Metaspace       used 11764K, capacity 11956K, committed 12288K, reserved 1060864K
      class space    used 1579K, capacity 1674K, committed 1792K, reserved 1048576K
     
    Card table byte_map: [0x0000000011be0000,0x0000000011fe0000] byte_map_base: 0x00000000117d7000
     
    Marking Bits: (ParMarkBitMap*) 0x000000007329a6d0
     Begin Bits: [0x0000000012690000, 0x0000000014648000)
     End Bits:   [0x0000000014648000, 0x0000000016600000)
     
    Polling page: 0x0000000000e30000
     
    CodeCache: size=245760Kb used=2741Kb max_used=2741Kb free=243018Kb
     bounds [0x0000000002820000, 0x0000000002ad0000, 0x0000000011820000]
     total_blobs=1266 nmethods=785 adapters=394
     compilation: enabled
     
    Compilation events (10 events):
    Event: 4.907 Thread 0x00000000173cb800  780       3       sun.font.FontDesignMetrics::stringWidth (154 bytes)
    Event: 4.908 Thread 0x00000000173cb800 nmethod 780 0x0000000002acdb50 code [0x0000000002acde00, 0x0000000002aceea8]
    Event: 4.909 Thread 0x00000000173cb800  781       1       java.util.Collections$EmptyList::isEmpty (2 bytes)
    Event: 4.909 Thread 0x00000000173cb800 nmethod 781 0x0000000002acc610 code [0x0000000002acc760, 0x0000000002acc870]
    Event: 4.910 Thread 0x00000000173cb800  782       3       java.awt.Color::equals (27 bytes)
    Event: 4.910 Thread 0x00000000173cb800 nmethod 782 0x0000000002acbed0 code [0x0000000002acc040, 0x0000000002acc530]
    Event: 4.910 Thread 0x00000000173cb800  783       3       sun.java2d.SunGraphics2D::dispose (12 bytes)
    Event: 4.910 Thread 0x00000000173cb800 nmethod 783 0x0000000002acba90 code [0x0000000002acbc00, 0x0000000002acbe28]
    Event: 4.910 Thread 0x00000000173cb800  784       3       java.util.IdentityHashMap$IdentityHashMapIterator::hasNext (50 bytes)
    Event: 4.911 Thread 0x00000000173cb800 nmethod 784 0x0000000002acb590 code [0x0000000002acb700, 0x0000000002acb990]
     
    GC Heap History (0 events):
    No events
     
    Deoptimization events (7 events):
    Event: 0.872 Thread 0x0000000000e5d800 Uncommon trap: reason=null_check action=make_not_entrant pc=0x000000000299b81c method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
    Event: 1.382 Thread 0x0000000019f8b000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000029fd058 method=java.lang.AbstractStringBuilder.append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; @ 1
    Event: 3.155 Thread 0x0000000019f8b000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000029f8894 method=java.lang.AbstractStringBuilder.append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder; @ 1
    Event: 3.270 Thread 0x0000000019f8b000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000029c8468 method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
    Event: 3.272 Thread 0x0000000019f8b000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000029c8468 method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
    Event: 3.272 Thread 0x0000000019f8b000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000029c8468 method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
    Event: 3.272 Thread 0x0000000019f8b000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000029c8468 method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
     
    Internal exceptions (10 events):
    Event: 0.146 Thread 0x0000000000e5d800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000d5bfacc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\jvm.cpp, line 1390]
    Event: 0.354 Thread 0x0000000000e5d800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d5c06618) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\jni.cpp, line 709]
    Event: 0.422 Thread 0x0000000000e5d800 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000d5d7b2b8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
    Event: 0.433 Thread 0x0000000000e5d800 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x00000000d5d88688) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\methodHandles.cpp, line 1146]
    Event: 0.616 Thread 0x0000000000e5d800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d5e53110) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\jni.cpp, line 709]
    Event: 0.860 Thread 0x0000000000e5d800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d5e7ebc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\jni.cpp, line 709]
    Event: 0.872 Thread 0x0000000000e5d800 Implicit null exception at 0x000000000299b65b to 0x000000000299b80d
    Event: 1.382 Thread 0x0000000019f8b000 Implicit null exception at 0x00000000029fcc96 to 0x00000000029fd041
    Event: 3.155 Thread 0x0000000019f8b000 Implicit null exception at 0x00000000029f84d6 to 0x00000000029f8879
    Event: 5.029 Thread 0x0000000019f8b000 Exception <a 'java/lang/NoSuchFieldError': hContext> (0x00000000d67242d8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\7884\hotspot\src\share\vm\prims\jni.cpp, line 2965]
     
    Events (10 events):
    Event: 3.330 loading class sun/java2d/loops/Blit$GeneralMaskBlit
    Event: 3.330 loading class sun/java2d/loops/Blit$GeneralMaskBlit done
    Event: 3.340 loading class javax/swing/event/AncestorEvent
    Event: 3.340 loading class javax/swing/event/AncestorEvent done
    Event: 3.347 loading class javax/swing/RepaintManager$3
    Event: 3.347 loading class javax/swing/RepaintManager$3 done
    Event: 3.936 loading class java/awt/LightweightDispatcher$2
    Event: 3.936 loading class java/awt/LightweightDispatcher$2 done
    Event: 4.161 Executing VM operation: EnableBiasedLocking
    Event: 4.161 Executing VM operation: EnableBiasedLocking done
     
     
    Dynamic libraries:
    0x00007ff7ffdb0000 - 0x00007ff7ffde7000 	C:\Program Files\Java\jre1.8.0_112\bin\javaw.exe
    0x00007ffc82140000 - 0x00007ffc82311000 	C:\WINDOWS\SYSTEM32\ntdll.dll
    0x00007ffc7fa30000 - 0x00007ffc7fadc000 	C:\WINDOWS\System32\KERNEL32.DLL
    0x00007ffc7f450000 - 0x00007ffc7f66d000 	C:\WINDOWS\System32\KERNELBASE.dll
    0x00007ffc7fae0000 - 0x00007ffc7fb82000 	C:\WINDOWS\System32\ADVAPI32.dll
    0x00007ffc81f60000 - 0x00007ffc81ffe000 	C:\WINDOWS\System32\msvcrt.dll
    0x00007ffc80110000 - 0x00007ffc80169000 	C:\WINDOWS\System32\sechost.dll
    0x00007ffc81be0000 - 0x00007ffc81d01000 	C:\WINDOWS\System32\RPCRT4.dll
    0x00007ffc81dd0000 - 0x00007ffc81f35000 	C:\WINDOWS\System32\USER32.dll
    0x00007ffc7f430000 - 0x00007ffc7f44e000 	C:\WINDOWS\System32\win32u.dll
    0x00007ffc80690000 - 0x00007ffc806c4000 	C:\WINDOWS\System32\GDI32.dll
    0x00007ffc7ef40000 - 0x00007ffc7f0c0000 	C:\WINDOWS\System32\gdi32full.dll
    0x00007ffc69f30000 - 0x00007ffc6a1aa000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.14393.953_none_42151e83c686086b\COMCTL32.dll
    0x00007ffc80350000 - 0x00007ffc80618000 	C:\WINDOWS\System32\combase.dll
    0x00007ffc7edd0000 - 0x00007ffc7eec5000 	C:\WINDOWS\System32\ucrtbase.dll
    0x00007ffc7eed0000 - 0x00007ffc7ef3a000 	C:\WINDOWS\System32\bcryptPrimitives.dll
    0x00007ffc7fb90000 - 0x00007ffc7fbbe000 	C:\WINDOWS\System32\IMM32.DLL
    0x0000000073760000 - 0x0000000073832000 	C:\Program Files\Java\jre1.8.0_112\bin\msvcr100.dll
    0x0000000072a80000 - 0x000000007331a000 	C:\Program Files\Java\jre1.8.0_112\bin\server\jvm.dll
    0x00007ffc7fbd0000 - 0x00007ffc7fbd8000 	C:\WINDOWS\System32\PSAPI.DLL
    0x00007ffc72f70000 - 0x00007ffc72f7a000 	C:\WINDOWS\SYSTEM32\VERSION.dll
    0x00007ffc7c900000 - 0x00007ffc7c923000 	C:\WINDOWS\SYSTEM32\WINMM.dll
    0x00007ffc7c8a0000 - 0x00007ffc7c8cb000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
    0x00007ffc6f7f0000 - 0x00007ffc6f7f9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
    0x00007ffc7f340000 - 0x00007ffc7f382000 	C:\WINDOWS\System32\cfgmgr32.dll
    0x00007ffc80620000 - 0x00007ffc8068a000 	C:\WINDOWS\System32\WS2_32.dll
    0x0000000050a20000 - 0x0000000050a2f000 	C:\Program Files\Java\jre1.8.0_112\bin\verify.dll
    0x00000000509f0000 - 0x0000000050a19000 	C:\Program Files\Java\jre1.8.0_112\bin\java.dll
    0x00000000509d0000 - 0x00000000509e6000 	C:\Program Files\Java\jre1.8.0_112\bin\zip.dll
    0x00007ffc806d0000 - 0x00007ffc81bd8000 	C:\WINDOWS\System32\SHELL32.dll
    0x00007ffc7e6f0000 - 0x00007ffc7edca000 	C:\WINDOWS\System32\windows.storage.dll
    0x00007ffc7e5d0000 - 0x00007ffc7e61c000 	C:\WINDOWS\System32\powrprof.dll
    0x00007ffc7f870000 - 0x00007ffc7f8c2000 	C:\WINDOWS\System32\shlwapi.dll
    0x00007ffc7e620000 - 0x00007ffc7e62f000 	C:\WINDOWS\System32\kernel.appcore.dll
    0x00007ffc7e640000 - 0x00007ffc7e6e9000 	C:\WINDOWS\System32\shcore.dll
    0x00007ffc7e5b0000 - 0x00007ffc7e5c4000 	C:\WINDOWS\System32\profapi.dll
    0x00000000728e0000 - 0x0000000072a78000 	C:\Program Files\Java\jre1.8.0_112\bin\awt.dll
    0x00007ffc81d10000 - 0x00007ffc81dcf000 	C:\WINDOWS\System32\OLEAUT32.dll
    0x00007ffc7f390000 - 0x00007ffc7f42c000 	C:\WINDOWS\System32\msvcp_win.dll
    0x00007ffc7c820000 - 0x00007ffc7c89a000 	C:\WINDOWS\SYSTEM32\apphelp.dll
    0x00007ffc7c790000 - 0x00007ffc7c7b6000 	C:\WINDOWS\system32\DWMAPI.DLL
    0x00007ffc7cb40000 - 0x00007ffc7cbd5000 	C:\WINDOWS\system32\uxtheme.dll
    0x00007ffc5df20000 - 0x00007ffc5e043000 	C:\WINDOWS\system32\opengl32.dll
    0x00007ffc64140000 - 0x00007ffc6416d000 	C:\WINDOWS\SYSTEM32\GLU32.dll
    0x00007ffc58420000 - 0x00007ffc58517000 	C:\WINDOWS\SYSTEM32\DDRAW.dll
    0x00007ffc77cf0000 - 0x00007ffc77cf8000 	C:\WINDOWS\SYSTEM32\DCIMAN32.dll
    0x00007ffc80180000 - 0x00007ffc802da000 	C:\WINDOWS\System32\MSCTF.dll
    0x00007ffc82000000 - 0x00007ffc82138000 	C:\WINDOWS\System32\ole32.dll
    0x0000000073710000 - 0x0000000073757000 	C:\Program Files\Java\jre1.8.0_112\bin\fontmanager.dll
    0x00000000750a0000 - 0x00000000750ba000 	C:\Program Files\Java\jre1.8.0_112\bin\net.dll
    0x00007ffc7dee0000 - 0x00007ffc7df3c000 	C:\WINDOWS\system32\mswsock.dll
    0x00000000746e0000 - 0x00000000746f1000 	C:\Program Files\Java\jre1.8.0_112\bin\nio.dll
    0x00000000736c0000 - 0x0000000073702000 	C:\Program Files\Java\jre1.8.0_112\bin\t2k.dll
    0x0000000180000000 - 0x0000000180071000 	C:\Windows\System32\Jacspcsc.dll
    0x00007ffc7fbe0000 - 0x00007ffc7fc7f000 	C:\WINDOWS\System32\clbcatq.dll
    0x00007ffc7bcb0000 - 0x00007ffc7be58000 	C:\WINDOWS\SYSTEM32\WindowsCodecs.dll
    0x00007ffc5e830000 - 0x00007ffc5e879000 	C:\WINDOWS\system32\dataexchange.dll
    0x00007ffc7bf40000 - 0x00007ffc7c091000 	C:\WINDOWS\system32\dcomp.dll
    0x00007ffc7ad70000 - 0x00007ffc7b026000 	C:\WINDOWS\system32\d3d11.dll
    0x00007ffc7d380000 - 0x00007ffc7d41f000 	C:\WINDOWS\system32\dxgi.dll
    0x00007ffc7cee0000 - 0x00007ffc7cffc000 	C:\WINDOWS\system32\twinapi.appcore.dll
    0x00007ffc7e4f0000 - 0x00007ffc7e51b000 	C:\WINDOWS\system32\bcrypt.dll
    0x00007ffc76aa0000 - 0x00007ffc76ade000 	C:\WINDOWS\SYSTEM32\winscard.dll
    0x00007ffc7d080000 - 0x00007ffc7d0a8000 	C:\WINDOWS\SYSTEM32\DEVOBJ.dll
    0x00007ffc7dd30000 - 0x00007ffc7dd86000 	C:\WINDOWS\SYSTEM32\WINSTA.dll
    0x00007ffc6eac0000 - 0x00007ffc6ec52000 	C:\WINDOWS\SYSTEM32\dbghelp.dll
     
    VM Arguments:
    jvm_args: -Djava.security.policy=java.policy.applet -Dfile.encoding=Cp1252 
    java_command: sun.applet.AppletViewer ACOS3MainApplet1498584880882.html
    java_class_path (initial): C:\Users\mcs\workspace\ACOS3\bin
    Launcher Type: SUN_STANDARD
     
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.8.0_112
    CLASSPATH=C:\Program Files\Java\jdk1.8.0_112\lib\tools.jar
    PATH=C:/Program Files/Java/jre1.8.0_112/bin/server;C:/Program Files/Java/jre1.8.0_112/bin;C:/Program Files/Java/jre1.8.0_112/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Microsoft MPI\Bin\;C:\app\mcs\product\11.2.0\client_1\bin;C:\app\oracle\product\11.2.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;c:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\MSE\Magic xpa 3.1\cvs_client;C:\Program Files\Symantec.cloud\PlatformAgent\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;c:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;c:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\PuTTY\;C:\Users\mcs\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files (x86)\MSE\Magic xpa 3.2\cvs_client;C:\Program Files (x86)\Skype\Phone\;C:\Program Files\Java\jre1.8.0_112\bin\java.exe;C:\Users\mcs\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Java\jdk1.8.0_112\bin;C:\Users\mcs\eclipse\committers-neon\eclipse;
    USERNAME=mcs
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 61 Stepping 4, GenuineIntel
     
     
     
    ---------------  S Y S T E M  ---------------
     
    OS: Windows 10.0 , 64 bit Build 14393 (10.0.14393.1198)
     
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 61 stepping 4, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
     
    Memory: 4k page, physical 8310232k(3354104k free), swap 10538456k(2175884k free)
     
    vm_info: Java HotSpot(TM) 64-Bit Server VM (25.112-b15) for windows-amd64 JRE (1.8.0_112-b15), built on Sep 22 2016 21:31:56 by "java_re" with MS VC++ 10.0 (VS2010)
     
    time: Tue Jun 27 17:34:46 2017
    elapsed time: 5 seconds (0d 0h 0m 5s)

  4. #4
    Membre averti Avatar de solaar
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    607
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Côte d'Ivoire

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Septembre 2007
    Messages : 607
    Points : 314
    Points
    314
    Par défaut
    un peu novice dans l'environnement Eclipse et Java mais près a apprendre.
    Mon objectif est de convertir ce code java en android java.

  5. #5
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Et la bibliothèque que tu utilises (JacspcscLoader), ça vient d'où ? Tu es sûr d'utiliser une version compatible avec ta version de JDK et ton architecture 64 bits.

    Et c'est quoi cette JVM : C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\
    Citation Envoyé par solaar Voir le message
    Mon objectif est de convertir ce code java en android java.
    Bon courage pour l'UI ! Je ne suis pas sûr qu'une conversion de code soit la meilleure façon d'aborder la chose :

    1. l'utilisation d'une bibliothèque "native" Windows impose d'avoir la même pour Android, ou du moins similaire fonctionnellement, mais dans ce cas, ça veut dire grosse adaptation du code.
    2. l'UI n'a rien à voir entre Java SE Swing et Android
    3. L'architecture même de l'application n'a rien à voir, même s'il y a des concepts simulaires (Thread d'UI séparé par exemple)
    4. Beaucoup d'API spécifiques à Android, et de certains concepts techniques (accès au système de fichiers, problématique de droits, etc.)


    Une approche fonctionnelle me semble une meilleure approche. Ensuite, tu vois si tu as certains algorithmes particuliers encodés en pur Java que tu peux reprendre tels quels, ou avec adaptations mineures.
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  6. #6
    Membre averti Avatar de solaar
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    607
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Côte d'Ivoire

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Septembre 2007
    Messages : 607
    Points : 314
    Points
    314
    Par défaut
    Bonjour ,
    C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u112\
    , je trouve pas ce répertoire sur mon poste.
    Et la bibliothèque que tu utilises (JacspcscLoader), ça vient d'où ? Tu es sûr d'utiliser une version compatible avec ta version de JDK et ton architecture 64 bits.
    , appel une bibliothèque qui se trouve dans le repertoire C:\Windows\System32 dont le nom est (Jacspcsc.dll). il existe une de 64 bits... je l'utilise puis vous reviens.

  7. #7
    Membre averti Avatar de solaar
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    607
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Côte d'Ivoire

    Informations professionnelles :
    Secteur : Industrie

    Informations forums :
    Inscription : Septembre 2007
    Messages : 607
    Points : 314
    Points
    314
    Par défaut
    voilà :
    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
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    Exception in thread "AWT-EventQueue-1" java.lang.UnsatisfiedLinkError: C:\Windows\System32\Jacspcsc.dll: Can't load this .dll (machine code=0x0) on a AMD 64-bit platform
    	at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    	at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    	at java.lang.ClassLoader.loadLibrary(Unknown Source)
    	at java.lang.Runtime.loadLibrary0(Unknown Source)
    	at java.lang.System.loadLibrary(Unknown Source)
    	at JacspcscLoader.<clinit>(JacspcscLoader.java:284)
    	at ACOS3Account.<clinit>(ACOS3Account.java:70)
    	at ACOS3MainApplet.actionPerformed(ACOS3MainApplet.java:129)
    	at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    	at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    	at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    	at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    	at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    	at java.awt.Component.processMouseEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)

Discussions similaires

  1. faire du php et java avec eclipse
    Par artotal dans le forum Eclipse Java
    Réponses: 4
    Dernier message: 03/02/2009, 21h07
  2. Réponses: 0
    Dernier message: 03/01/2009, 11h41
  3. Problème Création d'un projet en JAVA avec ECLIPSE
    Par norad2010 dans le forum XMLRAD
    Réponses: 4
    Dernier message: 02/05/2008, 16h49
  4. Erreur fréquente avec Eclipse
    Par luimême dans le forum Eclipse Java
    Réponses: 1
    Dernier message: 17/04/2008, 13h22
  5. [2.2][RCP Designer] Erreur java avec gdiplus
    Par jnowe dans le forum BIRT
    Réponses: 2
    Dernier message: 08/08/2007, 11h52

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