问题标签 [netbeans6.7]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1979 浏览

python - 手动在netbeans中的Python插件

可以手动在 netbeans 6.7 中安装 python 插件(没有工具/插件)吗?如果是(使用 .nbi 包)可以使用哪个 url?

0 投票
1 回答
5095 浏览

php - Netbeans 6.7 PHP - 如何在 HTML 文件中突出显示 PHP 代码?

有没有办法告诉 Netbeans 在 HTML 文件中突出显示 PHP 代码?我正在使用 Zend 框架,其中许多 PHP 代码包含在视图文件中。

0 投票
8 回答
38759 浏览

netbeans - Netbeans 清单

是否可以将条目添加到 netbeans 生成的 jar 的 manifest.mf 文件中?

例如构建一个 osgi 包。

0 投票
2 回答
490 浏览

ruby-on-rails - 在 netbeans 6.7 上运行 Rails 应用程序错误

我正在将我的 Netbeans 6.5 升级到 Netbeans 6.7

然后我打开基于 Netbeans 6.5 构建的 Rails 应用程序

我跑了,但它不起作用,说:

java.lang.NoClassDefFoundError: org/jruby/Main 原因:java.lang.ClassNotFoundException: org.jruby.Main at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged( Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)在 java.lang.ClassLoader.loadClass(ClassLoader.java:252) 在 java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) 找不到主类:org.jruby.Main。程序将会退出。线程“主”中的异常

发生了什么?

而且我不能用netbeans 6.7制作新的项目轨道

0 投票
1 回答
599 浏览

netbeans - 如何使 Netbeans UML 编辑器中的字体更小?

在我的 Mac OS 10.5 和 Netbeans 6.7.1 中,我的类图中的字体看起来非常粗大。我可以在某处全局设置字体大小吗?我想让它们都变小。

0 投票
1 回答
5652 浏览

netbeans - 如何使用 Netbeans 6.7.1 和 UML 编辑器创建对象图?

我还没有找到合适的图表类型来制作对象图。我想在应用程序中可视化我的对象图,而不是类继承。目前我用“类图”来做这件事,但这当然不是很好,因为看起来它们都继承自彼此。是否有更多用于安装的图表类型?

0 投票
3 回答
1299 浏览

java - 无法在 Vista Business 上执行 Java 应用程序 - “找不到主类...程序将退出”

我编写了一个需要 Java 1.6 的 Java GUI 应用程序(使用 Netbeans 6.7)。我在我的 XP PC 和我的 Mac OSX (10.5.7) 上成功地运行了它。

我的客户端正在运行 Vista Business,并且无法通过双击 jar 文件来运行应用程序。他可以从命令行执行它:“ javaw -jar ... ”收到的错误是:“找不到主类...程序将退出”。

我已要求客户执行以下操作:

  • 安装最新的 JRE
  • 运行 JarFix

我已经验证了:

  • JRE 安装在正确的位置
  • jar文件关联正确
  • 应用程序工作(因为我已经在 XP 和 Mac OSX 上测试过,客户端可以从命令行运行它)

关于我还能调查什么的任何想法?请注意,Netbeans 创建了主 jar 文件,以及一个包含几个其他 Jarfile 的 lib 目录。我解压缩了 jarfile 并检查了清单文件(看起来不错)。正确的主类也在应用程序的 jarfile 中。

客户端是否需要注意应用程序在 Vista 中的执行位置?

非常感谢。普伦博

0 投票
2 回答
150 浏览

java - Netbeans 中的 Eclipse 行为

我喜欢 Netbeans,但我真正喜欢 Eclipse 的一件事是我在 Netbeans 中无法做到的:

如果我启动了一个接受字符串的函数,即 someFunction("Some string here")

netbeans 和 eclipse 都会自动补全结尾的双引号和括号。

在 Eclipse 中,如果我在字符串末尾按回车键,光标将移到这些字符串之外。

在 Netbeans 中,它会换行。

任何人都知道如何使 Netbeans 以这种方式表现得像 Eclipse?

0 投票
5 回答
5273 浏览

netbeans - NetBeans 中的开放实现(类型层次结构)功能?

当我有这样的Java代码时:

如何让 Netbeans 向我展示哪些类具有 someMethod() 的实现(而不是接口)。

在 Eclipse 中,这是使用 Ctrl+T 完成的,但在 Netbeans 6.5 中按该方法上的 Ctrl+T 没有任何作用,而且我无法在 Netbeans 6.5 中找到类型层次结构功能。

谢谢。

0 投票
1 回答
892 浏览

java - Gwt multiple entry point and NetBeans 6.7

I want to make an homepage with GWT that let the user log in and then I want to redirect the user to another page, that will show a table or something else (the real part of the webapp). This will also be entirely coded with GWT. Now, I'm programming with netbeans 6.7 and I don't know how to manage different entryPoint (the home and the webapp) because it seems that I can have only one entry point at time in a single project... I don't want to split the app in two different projects because the two GWT entryPoints need to access to the same database... How can I do? Can you tell me some tip, or post a link to a tutorial?? I