current location:Home > Technical Articles > Development Tools

  • Tips for solving errors when eclipse exports signed apk files
    Tips for solving errors when eclipse exports signed apk files
    The Android project can be compiled normally, but the error as shown in the figure appears when exporting the signature package. The solution operations are listed here. Select project-->properties, select androidlintpreferences, click configureworkspacesetting, remove the check mark in front of the second line runfullerror..., and right-click OK. For the project name, select androidtool-->clearlintmarkers and then the signature package can be output normally.
    Computer Software . eclipse 1195 2024-06-12 18:21:40
  • How to configure the NDK environment in eclipse How to configure the NDK environment in eclipse
    How to configure the NDK environment in eclipse How to configure the NDK environment in eclipse
    First, open eclipse, click Window->Preferences->Android->NDK, and set the NDK path. Then, select the path where ndk is located as shown in the figure below. That is to complete the configuration of the NDK environment
    Computer Software . eclipse 938 2024-06-12 17:53:09
  • How to install plug-ins in eclipseLink How to install plug-ins in eclipseLink Method introduction
    How to install plug-ins in eclipseLink How to install plug-ins in eclipseLink Method introduction
    First, open the Eclipse installation directory, such as D:nicktinstalleclipse. Then, create a new links directory in this directory, such as D:nicktinstalleclipselinks. Then, create a new file with a link extension, such as findbugs.link. Open this file and enter the following content. :path=/MyPlug/FindBugs In the Eclipse installation directory, such as D:nicktinstalleclipse, create a new MyPlug/FindBugs directory, and copy the FindBugs plug-in to this directory. In order to load the new plug-in normally, enter ecli
    Computer Software . eclipse 373 2024-06-12 12:17:53
  • How to deal with the js error loop that always pops up when building in eclipse
    How to deal with the js error loop that always pops up when building in eclipse
    When using eclipse, the following box often pops up inexplicably, and sometimes it even loops endlessly. Seriously affects development efficiency. The reason analysis is that some js codes of our project have errors when verified by eclipse, but there are actually no errors. 1window->preference->JavaScript->Validator->Errors/Warnings->EnableJavascriptSematicvalidation2 Find the .project in the project directory and remove it. The following code.
    Computer Software . eclipse 585 2024-06-11 14:25:37
  • A simple way to set up eclipse to automatically delete blank lines and extra spaces after statements
    A simple way to set up eclipse to automatically delete blank lines and extra spaces after statements
    1. Open eclipse, click [Window] on the toolbar, find the [Preferences] option in the pop-up list, and then click this option. 2. The window that pops up now is a common setting window for JAVA developers. We click on [JAVA]>>[Editor]>>[SaveAction] in order, and finally click the mouse on [SaveAction]. 3. Check [Additional actions]. 4. Click [Configure...]. 5. The following interface will appear. Just check [Removetrailingwhitespace] and select [A
    Computer Software . eclipse 779 2024-06-11 13:05:37
  • What to do if eclipse is garbled? What to do if eclipse is garbled?
    What to do if eclipse is garbled? What to do if eclipse is garbled?
    First, open the Eclipse software, select the project and click the [right mouse button]->[Properties] function. Then, set the code encoding to [UTF-8] in [Resource]->[Textfileencoding]. Finally, click [Apply] to solve the garbled problem of the Eclipse project.
    Computer Software . eclipse 360 2024-06-11 12:34:35
  • How to set up automatic typesetting in eclipse How to set up automatic typesetting in eclipse
    How to set up automatic typesetting in eclipse How to set up automatic typesetting in eclipse
    1. First, after opening the eclipse software interface, click the Window menu above 2. Then, click the Preferences option in the drop-down menu 3. Then, find the Editor option under the Java section in the new window that opens, and click the SaveActions button 4. After that , click the mouse to check the Performtheselectedactionsonsave, Formatsourcecode and Formatalllines options 5. Finally, click the Apply button to complete the addition and close it.
    Computer Software . eclipse 458 2024-06-10 16:45:08
  • The specific method to restore the default layout in eclipse
    The specific method to restore the default layout in eclipse
    Open eclipse and find that the layout has been modified, leaving only one window. At this time, you can select [Window]--[ResetPerspective]. When a prompt window pops up, select [OK] directly. Now I find that the eclipse window has returned to the java default layout. More windows with required functions can be found in [Window]--[ShowView]. This will set it to the default layout you used before.
    Computer Software . eclipse 1049 2024-06-10 12:48:57
  • How to change the system encoding on Win10 computer? How to modify the system encoding on Win10
    How to change the system encoding on Win10 computer? How to modify the system encoding on Win10
    I believe some users know that by changing the system encoding, the way the system displays and processes files can be adjusted to adapt to different language and character set requirements. So how to modify it specifically? This article will bring you how to modify the Win10 system encoding! Method 1: Set to the system default encoding 1. First, open the control panel interface and click "Clock and Region" settings; 2. Then, continue to click "Region". 3. Then, in the pop-up window, switch to the "Management" option bar; 4. Then, click the "Change System Regional Settings" option below. 5. At this point, check “Use Unicode
    Windows Series . eclipse 422 2024-06-10 09:55:34
  • How to solve the problem of Eclipse stuck when using Ctrl key
    How to solve the problem of Eclipse stuck when using Ctrl key
    Open eclipse, click Window>>Preferences to expand: General>Editors>TextEditors>Hyperlinking. Set the Defaultmodifierkey on the right: Set the default Ctrl key to alt or other keys; this phenomenon is caused by too many functions bound to Ctrl. , every time you press Ctrl, Eclipse will retrieve its function, so it becomes laggy. After modification, the function of the previous Ctrl key needs to use a new key. Note: After modifying the key, pay attention to the previous shortcut key of the Ctrl key in Eclipse. To use the new shortcut
    Computer Software . eclipse 747 2024-06-09 22:53:26
  • How to uninstall plug-ins in eclipse Introduction to methods of uninstalling plug-ins in eclipse
    How to uninstall plug-ins in eclipse Introduction to methods of uninstalling plug-ins in eclipse
    First, open Eclipse, select [Help] --> "About Eclipse", and the following interface will appear. Then, select [InstallationDetails], and you can see the plug-ins we have installed in the [InstalledSoftWare] tab. Next, select the plug-in you want to uninstall and click [Uninstall...] ​​below. Then, the following interface will appear, and then click [Finish]. Finally, after the uninstallation is completed, Eclipse will be restarted, click [Yes]. The latest version of Eclipse, EclipseLuna, provides a more convenient uninstall function. Just click [H
    Computer Software . eclipse 392 2024-06-09 17:59:53
  • How to batch modify the graphic and text encoding of java files in eclipse
    How to batch modify the graphic and text encoding of java files in eclipse
    Open the eclipse tool, select windows, right-click [windows], and then click [Preferences] to enter the following page: Select [General]-》[ContentTypes], click [ContentTypes], and the following picture will appear: Click [Text]-[JavaSourceFile] in sequence ], the following picture will appear. Fill in the encoding you need in the Defaultencoding field. Here is an example of [utf-8]. Click [Update] to modify all files to the encoding you specify.
    Computer Software . eclipse 925 2024-06-09 16:59:08
  • Tips to solve the problem of js error loop pop-up prompt box when removing the build in eclipse
    Tips to solve the problem of js error loop pop-up prompt box when removing the build in eclipse
    When using eclipse, the following box often pops up inexplicably, and sometimes it even loops endlessly. Seriously affects development efficiency. The reason analysis is that some js codes of our project have errors when verified by eclipse, but they are actually correct. 1window->preference->JavaScript->Validator->Errors/Warnings->EnableJavascriptSematicvalidation2 Find the .project in the project directory and remove it. The following code.
    Computer Software . eclipse 798 2024-06-09 09:26:54
  • How to set up automatic compilation in eclipse How to set up automatic compilation in eclipse
    How to set up automatic compilation in eclipse How to set up automatic compilation in eclipse
    First, open the eclipse software on your computer, click project in the eclipse menu bar and then check buildautomaticaly to enable self-compilation.
    Computer Software . eclipse 1010 2024-06-08 13:22:40
  • How to close and restore the editor state in eclipse How to close and restore the editor state in eclipse
    How to close and restore the editor state in eclipse How to close and restore the editor state in eclipse
    1. First, after opening the eclipse interface, click the preferences option under the main menu. 2. Then, find and open the editor button in a new window. 3. Then, pull down to find the Restore editor state at startup option, and click to uncheck it. Can
    Computer Software . eclipse 754 2024-06-08 12:11:05

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28