admin管理员组

文章数量:1532440

public class Dict {
        public static void main(String[] args) throws IOException {
            String w = JOptionPane.showInputDialog("请输入词汇:");

            String u = "https://cn.bing/dict/search?q="+w;
            String t = Jsoup.connect(u).get().select("span[class=def b_regtxt]").get(0).text();
            JOptionPane.showMessageDialog(null, t);
        }
    }

本文标签: Java