java – 如何在Netbeans 7.1.2中设置${user}的值?

我想在Netbeans中替换${user}的默认值.帮助文件

To define a parameter:

  1. In the IDE’s menu bar,choose Tools > Templates. The Template Manager opens.

  2. Expand the Other category. Double-click on Properties. The User.properties file opens in the editor.

  3. Define a parameter. For example,define the ${user} parameter for adding your name to templates you create. The Syntax is ‘user=LorumIpsum@mycompany.com’. When a code template is expanded,all occurrences of ${user} in that template are replaced with ‘LorumIpsum@mycompany.com’.

  4. Add as many additional parameters as you want,with the Syntax name=value.

在步骤2中,双击“属性”不执行任何操作.我尝试在编辑器中打开“属性”模板并添加用户属性.我还尝试将基于Properties模板的文件添加到项目中.在创建新文件时,这些都没有改变输出.

我如何在Netbeans 7.1.2中执行此操作?

解决方法

当我撰写这个问题时,我找到了解决方案,并希望将其发布在此处供其他人参考. Netbeans帮助文件中的说明不正确.第2步应更改如下:
  1. Expand the Other category. Click the Setting button. The User.properties file opens in the editor.

我希望这对将来的某个人有用.

相关文章

ArrayList简介:ArrayList 的底层是数组队列,相当于动态数组。与 Java 中的数组相比,它的容量能动态增...
一、进程与线程 进程:是代码在数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位。 线程...
本文为博客园作者所写: 一寸HUI,个人博客地址:https://www.cnblogs.com/zsql/ 简单的一个类...
#############java面向对象详解#############1、面向对象基本概念2、类与对象3、类和对象的定义格式4、...
一、什么是异常? 异常就是有异于常态,和正常情况不一样,有错误出错。在java中,阻止当前方法或作用域...
Collection接口 Collection接口 Collection接口 Collection是最基本的集合接口,一个Collection代表一组...