- 浏览: 19639 次
- 性别:
- 来自: 上海
最新评论
-
lintide:
LZ,Run Terminal 插件无法找到,能否告知网址,感 ...
推荐netbeans的两个小插件
文章列表
1、作用域
定义变量使用var语句。当变量在函数内部定义时,var有着函数范围(function-scope)级别,这个变量不能在函数外被访问。JavaScript中没有其他的范围域粒度了,更具体的说,JavaScript中没有块域(block-scope)。
任何在函数中使用但没有用var明确定义的变量,都会被假定属于全局对象。
任何没有被明确初始化的变量都会被赋值于undefined。
2、函数返回值
javaScript没有void类型,所以每个函数都必须返回一个值,除了构造器之外默认值是undefined,构造器的默认返回值是this
3、if判断
在if语句,while语句,d ...
- 2009-04-04 17:29
- 浏览 922
- 评论(0)
在编译netbeans平台时,生成nbm后,竟然没有updates.xml,看了下代码,找到了这个ant命令,在netbeans build system模块中,在build.xml中添加如下target。
<target name="updatecenter">
<taskdef classname="org.netbeans.nbbuild.MakeUpdateDesc" name="updatecenter">
<classpath>
...
- 2009-03-12 11:05
- 浏览 1159
- 评论(0)
第一步下载平台源码,我只下载platform的,每日构建的下载地址为http://bits.netbeans.org/dev/nightly,选择最新的日期,在页面选择zip格式文档,再选择*platform-src.zip,下载后,解压,在nebeans中打开项目,选择nbbuid模块,打开后为Netbeans Buid System,在其根目录下建立user.build.properties文件,文件内容为
nbjdk.home=d:/Java/jdk1.5.0_14/
cluster.config=platform
nbjdk.home为jdk5的地址,不能用jdk6编译,如果你本身装 ...
- 2009-02-24 21:40
- 浏览 1287
- 评论(0)
public static void setTitle(final String title) {
WindowManager.getDefault().invokeWhenUIReady(new Runnable() {
public void run() {
WindowManager.getDefault().getMainWindow().setTitle(title);
}
});
}
- 2008-10-14 15:37
- 浏览 2685
- 评论(0)
查找内容[\u4e00-\u9fa5]
选择正则表达式
测试中,找到部分中文,不知道是不是都可以找得出来。
修正:[\u4E00-\u9FA5]|[\uFE30-\uFFA0]
- 2008-09-22 16:33
- 浏览 1390
- 评论(0)
As we discussed earlier, Swing relies on the older AWT GUI toolkit for top-level
window support and event dispatching. Whenever you run a Swing application,
three threads are automatically created. The first one is the main thread, which
runs your application’s main method. A second thread, called th ...
- 2008-09-22 10:27
- 浏览 924
- 评论(0)
ErrorManager.getDefault().notify(ErrorManager.INFORMATIONAL, exception);
- 2008-08-20 14:20
- 浏览 1078
- 评论(0)
NotifyDescriptor经典用法
- 博客分类:
- netbeans
private static boolean showDialog(URL whereTo) {
String msg = NbBundle.getMessage(FeedbackSurvey.class, "MSG_FeedbackSurvey_Message");
String tit = NbBundle.getMessage(FeedbackSurvey.class, "MSG_FeedbackSurvey_Title");
String yes = NbBundle.getMessage(Fe ...
- 2008-08-20 14:00
- 浏览 1338
- 评论(0)
* To install the development update center
Select to Tools | Plug-ins from the menu and go to the Settings tab. click Add. Enter the following:
Name: dev (or any name of your choice)
URL: http://deadlock.netbeans.org/hudson/job/javadoc-nbms/lastSuccessfulBuild/artifact/nbbuild/nb ...
- 2008-05-18 10:01
- 浏览 1171
- 评论(0)
You can use:
File udir = new File(System.getProperty("netbeans.user"));
or you can use:
FileObject root = Repository.getDefault().getDefaultFileSystem().getRoot();
File udir = FileUtil.toFile(root).getParentFile();
//notice get parent called on the File instance instead
//of the root FileO ...
- 2008-04-11 23:46
- 浏览 1297
- 评论(0)
The core snippet is here:
public class Installer extends ModuleInstall {
public void restored() {
modifyAutoupdateSettings();
}
private void modifyAutoupdateSettings () {
Settings autoupdateSettings =
(Settings)SharedClassObject.findObject(Settings.class);
...
- 2008-04-11 23:41
- 浏览 1140
- 评论(0)
1、adding a META-INF/services for java.util.logging.Handler
2、#-org.netbeans.core.NbErrorManager
my.company.MyErrorHandler
- 2008-04-11 23:36
- 浏览 1202
- 评论(0)
1、Run Terminal
http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=2876
打开操作系统的shell,windows下就是cmd了,直接在项目目录打开,用途不多说了,有时候挺管用。
2、Explore From Here
http://sourceforge.net/projects/efhnbm/
打开文件浏览器,并定位到项目所在目录。
1、下载netbeans源代码,解压,例如:e:/netbeans/source。
2、用netbeans打开源码路径中的nbbuild
3、修改defaults-properties.xml中的
<dirname property="nb_all" file="${ant.file.default-properties}/..">
为<property name="nb_all" value="e:/netbeans/source"/>
4、编译nbbuild,如果安装的是jdk1.6,需要 ...
- 2007-12-05 10:17
- 浏览 1181
- 评论(0)