前提・実現したいこと
eclipseでJFrameを使用したいのですが下記のようなエラーがでます。
https://qiita.com/ryome/items/a45e0db4f7456e62d8d8
こちらの記事通りにやってみてもうまくいきません。
実行環境をJavaSE-1.8に設定しているのですが、おそらくそれが適応されていないのが原因かと思います。
実行時のJRE
発生している問題・エラーメッセージ
# # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffea7ecf74a, pid=128400, tid=121336 # # JRE version: OpenJDK Runtime Environment (14.0.2+12) (build 14.0.2+12-46) # Java VM: OpenJDK 64-Bit Server VM (14.0.2+12-46, mixed mode, tiered, compressed oops, g1 gc, windows-amd64) # Problematic frame: # C [awt.dll+0x8f74a] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # C:\Users\t1405\Downloads\pleiades a\pleiades\workspace\TestJFrame\hs_err_pid128400.log # # If you would like to submit a bug report, please visit: # https://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug.
該当のソースコード
JAVA
1package test1; 2 3import java.awt.BorderLayout; 4import java.awt.EventQueue; 5 6import javax.swing.JFrame; 7import javax.swing.JPanel; 8import javax.swing.border.EmptyBorder; 9 10public class Test1 extends JFrame { 11 12 private JPanel contentPane; 13 14 /** 15 * Launch the application. 16 */ 17 public static void main(String[] args) { 18 EventQueue.invokeLater(new Runnable() { 19 public void run() { 20 try { 21 Test1 frame = new Test1(); 22 frame.setVisible(true); 23 } catch (Exception e) { 24 e.printStackTrace(); 25 } 26 } 27 }); 28 } 29 30 /** 31 * Create the frame. 32 */ 33 public Test1() { 34 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 35 setBounds(100, 100, 450, 300); 36 contentPane = new JPanel(); 37 contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); 38 contentPane.setLayout(new BorderLayout(0, 0)); 39 setContentPane(contentPane); 40 } 41 42} 43
試したこと
https://qiita.com/ryome/items/a45e0db4f7456e62d8d8
こちらのテストです。
補足情報(FW/ツールのバージョンなど)
windows10 64bit
あなたの回答
tips
プレビュー