In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article is to share with you about the common development editor tools of Java. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Official download of 1.editplus1.1
Https://www.editplus.com/
Officially download the latest 64-bit
2. To decompress, you can use 2.1 vscode.
Vscode is a free, open source code editor tool from Microsoft.
2.2 download
2.3 decompress and establish data
In the program directory, create a data directory
2.4 settings.json {"window.zoomLevel": 0, "workbench.iconTheme": "vscode-icons", "workbench.startupEditor": "newUntitledFile", "window.menuBarVisibility": "toggle", "workbench.activityBar.visible": true, "editor.fontFamily": "Consolas, 'Courier New', monospace", "editor.fontSize": 18, "editor.lineHeight": 25, "editor.lineNumbers": "on" Editor.mouseWheelZoom: true, "editor.renderLineHighlight": "all", "files.autoSave": "afterDelay", "liveServer.settings.donotShowInfoMsg": true, "vsicons.dontShowNewVersionMessage": true, "breadcrumbs.enabled": true, "editor.minimap.enabled": false, "workbench.colorCustomizations": {/ / "editorLineNumber.foreground": "# 17a346", / / "editorGutter.background": "# 02023011" / / "editorCursor.foreground": "# d41313", / / "editor.background": "# eeeeee00", "editor.lineHighlightBackground": "# 2f5ad109", "editor.lineHighlightBorder": "# ced4d000"}, "emmet.variables": {"lang": "zh-CN", "charset": "utf-8"} "html]: {" editor.defaultFormatter ":" vscode.html-language-features "}," diffEditor.renderSideBySide ": true," workbench.statusBar.visible ": true," liveServer.settings.host ":" localhost "," liveServer.settings.port ": 80," liveServer.settings.AdvanceCustomBrowserCmdLine ":"," editor.suggestSelection ":" first "," vsintellicode.modify.editor.suggestSelection ":" automaticallyOverrodeDefaultValue " "files.exclude": {"* * / .classpath": true, "* * / .project": true, "* * / .settings": true, "* * / .factorypath": true}, "vscodeGoogleTranslate.preferredLanguage": "Catalan", "diffEditor.ignoreTrimWhitespace": false, "open-in-browser.default": "D:\ Program Files (x86)\\ chrome\\ chrome.exe" "open-php-html-js-in-browser.customBrowserPath": "D:\\ Program Files\\ chrome\\ chrome.exe", "settingsSync.ignoredExtensions": [],} 2.5vscode instructions and shortcuts
Vscode version 1.51.0 Readme
1) configure startup method, and set extended configuration localization .vscode .code
Desktop shortcut startup parameter vsc\ Code.exe-- extensions-dir .vscode-- user-data-dir .code
You can also create a data directory without using shortcuts.
2) set up the software in Chinese and English, first install the extension Chinese (Simplified) plug-in
Press ctrl + shift + p command panel to enter config display language Click to select en or zh-CN or download other languages
3) modify emmet local template file language and document title lang= "zh-CN" Document
Open the vsc/resources/app/extensions/emmet/dist/node/emmetNodeMain.js file
1:Document 1: http://example.com lang: "en", locale: "en-US", charset: "UTF-8" about 5657 lines of lang=zh, about 5097 lines of settings set the page title
4) snippets code snippet prompts you to press the tab key, and the location of the code snippet file vsc/.code/User/snippets/wyl.code-snippets
5) commonly used shortcut keys
Common shortcut keys:
Ctrl+shift+w closes all open document windows (default is not set by yourself)
Alt+/ code prompts for shortcut keys (default is ctrl+space)
Ctrl+x cuts the current line
Ctrl+shift+k deletes the current line
Alt+shift+up (down) upstream
Alt+up (down) moves the code line up
Ctrl++ window enlarged
Ctrl+- window shrinks
Ctrl+0 (numeric keypad) window returns to default
Ctrl + mouseWheelZoom sets editor font case (settings.json configuration "editor.mouseWheelZoom": true)
Ctrl+/ comment Uncomment the current line
Alt+shift+a block comment
Alt sets shortcut keys to temporarily display menus for ctrl+shift+alt+f1
Alt+shift+f formatting document
Ctrl+b opens the left active panel
Ctrl+j opens and closes the panel
Ctrl+ `Open the terminal panel, and you can enter live-server
Ctrl+g shortcut to specify line code location
Ctrl+shift+t quickly translate the currently selected words (need to install the Yao Translate translation plug-in)
F2 modify the content or change the file name
Ctrl+shift+alt+F12 opens the browser and uses the live-serve server to browse the current web page directly
Ctrl+shift+alt+f1 menu switch
Left side of ctrl+shift+alt+f2, active bar switch
Ctrl+shift+alt+f3 show breadcrumbs switch
Ctrl+shift+alt+f4 show minimap switch
Ctrl+shift+alt+F6 status bar switch
2.6 add right mouse button function to vscode
Addmouseright.inf
[Version] Signature= "$Windows NT$" [DefaultInstall] AddReg=VSCode [VSCode] hkcr, "*\\ shell\\ VSCode", "Open with Code" hkcr, "*\ shell\\ VSCode\\ command", "1%\ Code.exe", "% 1"% *" hkcr, "Directory\ shell\ VSCode", "Open with Code" hkcr, "*\ shell\\ VSCode", "Icon", 0x20000, "1%\ Code.exe, 0" hkcr "Directory\ shell\ VSCode\ command", "" 1%\ Code.exe "1"
Delright.reg
Windows Registry Editor Version 5.00 [- HKEY_CLASSES_ROOT\ *\ shell\ VSCode] [- HKEY_CLASSES_ROOT\ Directory\ shell\ VSCode]
2.7 user code snippet settings
2.8 clear a set of long strings for each execution of the java program
3.Eclipse
Myeclipse is a plug-in for eclipse
3.1 basic installation and use of eclipse
(1) download eclipse www.eclipse.org
(2) decompress and start the development tool directly
If it cannot be started, the jdk development environment variable is not configured.
(3) set up the project, write the code, and run the program
3.2 Eclipse Hidden menu Bar
Turn off spelling check
3.4 start the auto-save function
3.5 Code skin Code style
Http://www.eclipsecolorthemes.org/ download epf choose import Import from the eclipse File menu
3.6 Chinese-English translation project
(1). Eclipse set up the project
(2) Open jsoup.org website to download jsoup jar file
(3) Click the project name in the eclipse project and paste jar into the project
(4) Click the jsopu-1.13.1.jar file, and right-click to create classpath.
(5) write src/cn/webrx/Dict.java
Package cn.webrx;import java.io.IOException;import javax.swing.JOptionPane;import org.jsoup.Jsoup;public class Dict {public static void main (String [] args) throws IOException {String w = JOptionPane.showInputDialog ("Please enter words:"); String u = "http://www.youdao.com/w/eng/" + w +" / # keyfrom=dict2.index " JOptionPane.showMessageDialog (null,Jsoup.connect (u). Get (). Select ("div [trans-container]"). Get (0). Text ();} public static void f360 (String [] args) throws IOException {String w = "public"; String u = "class + w" System.out.println (Jsoup.connect (u). Get (). Select ("div [mh-translation]"). Get (0). Text ();}}
Package cn.webrx;import java.io.IOException;import javax.swing.JOptionPane;import org.jsoup.Jsoup;public class Dict {public static void main (String [] args) throws IOException {String w = "Sun"; String u = "https://cn.bing.com/dict/"+w; System.out.println (Jsoup.connect (u). Get (). Select (" span [class=def b_regtxt] "). Get (0). Text ()) } public static void baidu (String [] args) throws IOException {String w = "hello"; String u = "https://www.baidu.com/s?wd="+w+"&ie=UTF-8"; System.out.println (Jsoup.connect (u). Get (). Select (" span [class = op_dict_text2] "). Get (0). Text ()) } public static void mayouda0 (String [] args) throws IOException {String w = JOptionPane.showInputDialog ("Please enter words:"); String u = "http://www.youdao.com/w/eng/" + w +" / # keyfrom=dict2.index "; JOptionPane.showMessageDialog (null,Jsoup.connect (u). Get (). Select (" div [trans-container] "). Get (0). Text ()) } public static void f360 (String [] args) throws IOException {String w = "public"; String u = "https://www.so.com/s?q=" + w; System.out.println (Jsoup.connect (u). Get (). Select (" divclass [mh-translation] "). Get (0). Text ()
Download the tomcat extraction configuration:
4. Download Intellij IDEA4.1
4.2 decompression registration
4.3 configuration
The editor tool opens the f:/ij/bin/idea.properties core configuration file and modifies it as follows
4.4 launch idea and register
Http://idea.medeming.com/jet/
Http://idea.medeming.com/jetbrains/
5.JRebel activation cracking 5.1 server address listening server address
Http://jrebel.cicoding.cn
Http://jrebel.cicoding.cn/guid
Http://jrebel.cicoding.cn/43B6551C-9785-CEA6-05DF-10AC0AF49AA7
5.2 Registration as shown in the figure
Thank you for reading! This is the end of this article on "what are the common development editor tools for Java?". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.