通过IDEA将java程序或者项目打包为jar包
文章目录
一、使用java语言,编写一个字典(Dict)Demo
代码如下:
/*
* Copyright (c) 2020, 2023, [email protected] All rights reserved.
*
*/
package cn.itcast;
import org.jsoup.Jsoup;
import javax.swing.*;
import java.io.IOException;
/**
* <p>Project: JavaStudy - Dict
* <p>Powered by jiangbo On 2023-02-18
* 16:41:29
* <p>Created by IntelliJ IDEA
*
* @author jiangbo [[email protected]]
* @version 1.0
* @since 8/17
*/
public class Dict {
public static void main(String[] args) throws IOException {
String w = "美国";
// 微软词典
w = JOptionPane.showInputDialog("请输入词汇:");
String u = "https://cn.bing.com/dict/search?q=" + w;
String ok = Jsoup.connect(u).get().select("span[class=def b_regtxt]").get(0).text();
//System.out.println(ok);
JOptionPane.showMessageDialog(null,ok);
}
}
二、将Dict程序打包为jar包
1.点击file,点击project structure.
2.点击Artifacts,点击“+”,点击JAR,点击from......dependencies.
** 3.选择项目位置Module,和程序类Main Class(要看你的项目位置,有所不同)点击ok**
** 4.如下图**
- 如下图
** 6.如下图,点击apply,ok**
7.如下图
8.如下图
9.如下图,打包成功
10.查看刚刚设置的目录,发现jar文件,则打包成功
版权归原作者 狂徒爱磨刀~ 所有, 如有侵权,请联系我们删除。