Intellij Idea 简明教程

Intellij Idea - Migrating from Eclipse

Eclipse 是另一种流行的 Java IDE。如果您是 Eclipse 的现用用户,并想从其迁移到 IntelliJ,那么这是一个很好的起点。

本章讨论了如何在 IntelliJ 中导入 Eclipse 项目、它的 Eclipse 等价术语、常用快捷方式和常见问题。

Import existing project

在本节中,我们将讨论如何导入现有项目。请按以下步骤导入项目:

  1. 导航至文件 → 新建 → 从现有来源进行项目。

  2. 选择你的 NetBeans 项目目录。

  3. 当导入项目向导打开时,选择从现有来源创建项目选项。

  4. 遵循屏幕上的说明继续。

IntelliJ vsEclipse terminology

下表比较了 IntelliJ 和 NetBeans 术语 -

IntelliJ

Eclipse

Project

Workspace

Module

Project

Facet

Facet

Library

Library

SDK

JRE

Path variable

Classpath variable

IntelliJ 是一个以键盘为中心的 IDE。它为大多数操作提供了快捷键。下表列出了一些常用快捷键 -

Action

Shortcut

Run java program

ctrl+shift+F10

Organize imports

ctrl+alt+o

System.out.println()

键入 sout,然后按 Ctrl+J

Delete current line

ctrl + y

Search

Ctrl+Shift+F

Generate getter and setter

alt + insert

Format code

Ctrl+Alt+L

Comment out code

ctrl + /

Go to line

ctrl + g

Go to declaration

ctrl + b

Rename

shift+F6

Move lines

Ctrl+Shift+向上/向下

Debugger shortcuts

下表列出了一些常用的调试快捷键 -

Debug action

Shortcut

Debug a program

Shift + F9

Choose configuration and debug

Shift+Alt+F9

Step over

F8

Step into

F7

Smart step into

Shift + F7

Step out

Shift + F8

Force step over

Shift+Alt+F8

Force step into

Shift+Alt+F7

Resume program

F9

Evaluate expression

Alt+F8

Toggle breakpoints

Ctrl+F8

View breakpoints

Ctrl+Shift+F8

FAQsand Tips

在此部分中,我们会看到一些常见问题和提示。常见问题及提示如下 -

Use Eclipse Compiler

Eclipse 使用它自己的编译器,而 IntelliJ IDEA 使用与项目 JDK 捆绑在一起的 javac 编译器。如果你想使用 Eclipse 编译器 -

  1. 导航到 File → Settings → Build, Execution, Deployment → Compiler → Java Compiler

  2. 从用户编译器下拉菜单中选择所需的编译器。

eclipse compiler

Eclipse Keymap

对于不想学习新快捷键的 Eclipse 用户,IntelliJ IDEA 提供了 Eclipse 快捷键映射,它非常类似其快捷键 -

  1. 导航到文件 → 设置 → 快捷键映射选项。

  2. 从快捷键映射下拉菜单中选择 Eclipse。

eclipse keymap

Code formatting

若要导入你的 Eclipse 格式化程序设置 -

  1. 导航到 File → Settings → Editor → Code Style → Java

  2. 选择 Eclipse XML 个人资料。

eclipse formatter settings

Working with Build Tools

与 Eclipse 类似,IntelliJ 并不为编辑 Maven/Gradle 配置文件提供可视化形式。

一旦你导入/创建了你的 Maven/Gradle 项目,你就可以直接在文本编辑器中编辑其 pom.xml/build.gradle 文件。