本文概述
- 1.打开NetBeans模板管理器
- 2.修改User.properties文件
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */package sandbox;
/** * * @author sdkca */public class Sandbox {/*** @param args the command line arguments*/public static void main(String[] args) {System.out.println("Hello World!");
}}
如你所见, 通常NetBeans将使用计算机的用户名, 或者只是不将@author标记添加到文档中。你可以使用自定义模板自动更改在创建此类文件期间由NetBeans设置的默认文本。在本文中, 我们将向你介绍如何在NetBeans 8.2中轻松配置它。
1.打开NetBeans模板管理器 要打开NetBeans的模板管理器, 请访问顶部栏菜单上的” 工具” 按钮, 然后单击” 模板” 选项:
文章图片
单击模板后, 将出现一个新窗口, 即模板管理器窗口。出现此窗口后, 单击” 设置” :
文章图片
2.修改User.properties文件 在上一个对话框中单击” 设置” 后, NetBeans将在新选项卡中打开IDE的User.properties文件。默认情况下, 此文件包含以下文本:
## Here, or in other properties files in this directory, you can define# various properties that you want to make available to the template# processor while creating various templates.# # uncomment the next line and specify your user name to be used in new templates# user=Your Name <
your.name at your.org>
作者的属性是用户, 因此将要显示在包含此变量的新类或代码模板上的文本定义为值。例如, 我们将使用下一个值修改我们的值:
## Here, or in other properties files in this directory, you can define# various properties that you want to make available to the template# processor while creating various templates.## uncomment the next line and specify your user name to be used in new templatesuser=Carlos Delgado <
dev@ourcodeworld.com>
将更改保存到文件后, 如果继续创建使用该值的新文件, 则会找到新的作者文本:
文章图片
编码愉快!
推荐阅读
- 如何使用PHP最小化Javascript和CSS
- 如何在Composer中要求PEAR软件包
- 如何在Plesk中使用composer(使用其他版本的PHP运行Composer)
- 如何解决Cygwin终端错误(无法派生子进程:没有可用的终端(-1))
- 如何在Symfony 3中使用FOSUserBundle创建自定义注销事件(onLogout)监听器
- 如何在Doctrine和Symfony 3中启用加密哈希函数(MD5,SHA1和SHA2)
- 如何在Windows中使用Visual Studio编译PHP扩展名(DLL文件)
- 如何解决Composer安装/更新错误(VirtualAlloc()失败:[0x00000008])
- 对于Xamarin Android,我无法处理点击事件的后台通知