Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Eclipse cant find the import javax.swing.JOptionPane

Where is it located and how can i include it?

import javax.swing.JOptionPane;
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
520 views
Welcome To Ask or Share your Answers For Others

1 Answer

  1. There must be an installed (and selected) JDK in Eclipse:

    Window > Preferences > Java > Installed JREs   
    
  2. The project must be configured to use that JDK:

    Project > Properties > Java Build Path > Libraries
    

    there should be an entry like "JRE System Library [JDK7]" in the list. If not press:

    Add Library... > JRE System Library
    
  3. The project should have been created as a "Java Project":

    Project > Properties > Builders
    

    should include "Java Builder"


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...