随笔 - 630  文章 - 7 评论 - 47 阅读 - 49万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

随笔分类 -  Netbeans RCP

1 2 3 下一页
Netbeans rcp中获得本地文件系统路径
摘要:通过file协议 —————————————————————————————————————————————————————— URL url = new URL("file:///E:/AutoTest.exe"); File file1 = Utilities.toFile(url.toURI( 阅读全文
posted @ 2017-09-12 11:00 网络大豆 阅读(205) 评论(0) 推荐(0) 编辑
netbeans rcp中如何编程设置主窗口标题
摘要:http://www.th7.cn/Program/java/201510/606050.shtml ———————————————————————————————————————————————————————————————————————————————— // 设置主窗口标题 WindowM 阅读全文
posted @ 2017-08-09 16:51 网络大豆 阅读(319) 评论(0) 推荐(0) 编辑
配置文件报错:不允许有匹配 [xX][mM][lL] 的处理指令目标。
摘要:http://www.68idc.cn/help/buildlang/ask/20150108163110.html —————————————————————————————————————————————————— 框架整合 的时候,XML配置文件大多数情况是从另一个框架里面复制的。 今天在练习 阅读全文
posted @ 2016-06-10 18:06 网络大豆 阅读(1024) 评论(0) 推荐(0) 编辑
TopComponent设置某个控件焦点
摘要:仅仅在 @Override public void componentOpened() { syncBtn.requestFocus(); } 中指定还不够,还需要重载 @Override public void requestFocus() { super.requestFocus(); sync 阅读全文
posted @ 2016-06-07 17:39 网络大豆 阅读(341) 评论(0) 推荐(0) 编辑
Java IO包装流如何关闭?
摘要:http://www.cnblogs.com/qqzy168/p/3670915.html —————————————————————————————————————————————————————— 问题: (1)JAVA的IO流使用了装饰模式,关闭最外面的流的时候会自动调用被包装的流的close 阅读全文
posted @ 2016-06-06 22:43 网络大豆 阅读(419) 评论(0) 推荐(0) 编辑
JAVA :Jpanel 控件 无法显示问题
摘要:http://blog.csdn.net/gcangle/article/details/8222005 ———————————————————————————————————————————————————————— 在做一个嵌入式摄像头项目中,遇到了这样一个郁闷的问题。 新建了一个类继承Jpan 阅读全文
posted @ 2016-06-04 22:25 网络大豆 阅读(1308) 评论(0) 推荐(0) 编辑
beansbinding NetBeans IDE 中 Swing数据绑定插件
摘要:http://my.oschina.net/u/127459/blog/111486 https://kenai.com/projects/betterbeansbinding/pages/Home —————————————————————————————————————————————————— 阅读全文
posted @ 2016-05-31 15:07 网络大豆 阅读(790) 评论(0) 推荐(0) 编辑
NetBeans Lookups Explained!
摘要:https://dzone.com/articles/netbeans-lookups-explained ———————————————————————————————————————————————————————— Lookups are one of the most important p 阅读全文
posted @ 2016-02-05 10:16 网络大豆 阅读(355) 评论(0) 推荐(0) 编辑
Netbeans Platform 工程,免安装JDK
摘要:使用Netbeans 6.8 创建了一个Netbeans Platform 工程,以Zip形式发布后,按照以下操作,可 以在客户端免安装JDK:1. 从已安装JDK的计算机中,提取JDK:eg. C:\Program Files\Java\jdk1.6.0_19;2. 复制到下,重命名为jdk;3.... 阅读全文
posted @ 2014-05-10 22:57 网络大豆 阅读(288) 评论(0) 推荐(0) 编辑
Attach source code to a Netbeans Library Wrapper Module
摘要:http://rubenlaguna.com/wp/2008/02/22/attach-source-code-to-a-netbeans-library-wrapper-module/Attach Source Code to a Netbeans Library Wrapper ModuleFeb 22nd, 2008I’m new in NetBeans and today I’ve been struggling a couple of hours with the simple task of attaching the source code for an external JAR 阅读全文
posted @ 2013-12-06 00:50 网络大豆 阅读(309) 评论(0) 推荐(0) 编辑
NetBeans平台中调用状态栏
摘要:http://blog.csdn.net/mycsoft/article/details/2326386StatusDisplayer stD = StatusDisplayer.getDefault();stD.setStatusText("Status 1..."); 阅读全文
posted @ 2013-12-06 00:48 网络大豆 阅读(313) 评论(0) 推荐(0) 编辑
Netbeans Platform 工程,免安装JDK
摘要:使用Netbeans 6.8 创建了一个Netbeans Platform 工程,以Zip形式发布后,按照以下操作,可 以在客户端免安装JDK:1. 从已安装JDK的计算机中,提取JDK:eg. C:\Program Files\Java\jdk1.6.0_19;2. 复制到下,重命名为jdk;3. 编辑/etc下的conf文件: jdkhome="./jdk"。 OK了^O^ 阅读全文
posted @ 2013-12-06 00:46 网络大豆 阅读(222) 评论(0) 推荐(0) 编辑
easily add files to META-INF in NetBeans
摘要:http://georgeinfo.blog.163.com/blog/static/16368334120101019104044650/————————————————————————————————————————————————————————————These days when you find me working in Java, you’ll find me working in NetBeans. If I wanted to spend my time manually editing ant scripts, you’d probably find me working 阅读全文
posted @ 2013-08-07 21:42 网络大豆 阅读(569) 评论(0) 推荐(0) 编辑
Creating Extensible Applications With the Java Platform
摘要:Lookup API Outside the NetBeans PlatformCreating Extensible Applications With the Java Platform——————————————————————————————————————————————————————————————————Creating Extensible Applications With the Java PlatformBy John O'Conner, September 2007 Articles IndexAn extensible application is one 阅读全文
posted @ 2013-04-24 06:48 网络大豆 阅读(280) 评论(0) 推荐(0) 编辑
Netbeans 7.1中的XML Layer
摘要:http://wiki.netbeans.org/NewAndNoteworthyNB71#XML_Layer—————————————————————————————————————————————————————————————————————————— XML Layer New projects are now created without an XML layer, but there is now a New File wizard to add a layer to a project without one if you need it. (Many modules ca.. 阅读全文
posted @ 2012-01-08 10:57 网络大豆 阅读(402) 评论(0) 推荐(0) 编辑
添加IDE的更新中心功能
摘要:以下内容来自《NetBeans富客户端编程权威教程》P342 在首次创建新的应用程序时,“工具”菜单下是没有“更新中心”菜单项的。 “更新中心”菜单项没有出现,是因为在建立独立的应用程序套件项目时,把IDE的模块都排除了——自动更新模块也被排除了。所以,开发者必须让应用程序将提供NetBeans IDE "更新中心"向导的模块包含进来,当然还有它的支持功能——对应的菜单项以及“模块管理器”。 以下为Netbeans 7.1截图 阅读全文
posted @ 2012-01-08 09:48 网络大豆 阅读(266) 评论(0) 推荐(0) 编辑
转一个技术博客http://www.antonioshome.net/blog/
摘要:http://www.antonioshome.net/blog/ 阅读全文
posted @ 2011-12-22 18:04 网络大豆 阅读(238) 评论(0) 推荐(0) 编辑
NetBeans Platform on standalone Swing applications
摘要:上链接,不错的入门教程—————————————————————————————————————————————————————————————————————— http://www.antonioshome.net/kitchen/swingnbrcp/index.php#swingnbrcp-introduction 阅读全文
posted @ 2011-12-20 16:48 网络大豆 阅读(261) 评论(0) 推荐(0) 编辑
转:JXCollapsiblePane/JXTaskPane via NetBeans 6.9.1 designer
摘要:http://forums.netbeans.org/ntopic32575.html————————————————————————————————————————————————————————————————Author Message jim_akmerJoined: 20 Oct 2010Posts: 2 Posted: Wed Oct 20, 2010 12:15 pm Post subject: JXCollapsiblePane/JXTaskPane via NetBeans 6.9.1 designer ... 阅读全文
posted @ 2011-11-03 15:37 网络大豆 阅读(525) 评论(0) 推荐(0) 编辑
关于Native Library在NetbeansRCP应用中的设置
摘要:在Netbeans RCP中利用JMF框架实现音频视频的传输,开始就遇到一个问题,网上搜索了一下,与下面这个类似,直接贴过来吧——————————————————————————————————————————————————————————————http://stackoverflow.com/questions/5887383/netbeans-platform-application-doesnt-detect-webcam-devices-with-jmfI've been trying to develop an application with Netbeans RCP 阅读全文
posted @ 2011-11-02 11:22 网络大豆 阅读(870) 评论(0) 推荐(0) 编辑

1 2 3 下一页
点击右上角即可分享
微信分享提示