我使用的是 Ubuntu 12.10 64 位...我已经安装了 XAMPP 和 Netbeans 7.2 IDE。问题是我无法使用 Netbeans IDE 打开任何 PHP 文件,当我单击“打开方式”时,我无法在显示的应用程序中找到 Netbeans
如何将 Netbeans 7.2 设置为我的默认 PHP 文件 IDE?
答案1
只需打开以下路径,
cd /usr/share/applications/
查找 netbeans.desktop 文件
ls -al | grep netbeans
编辑 netbeans.desktop 文件
vim netbeans <version>
Exec=/bin/sh "/usr/local/netbeans-8.0.2/bin/netbeans" %U
只需添加%U在 Exec 的末尾。
现在转到任意文件,右键单击“属性”->“打开方式”,您将看到 netbeans。现在将其设置为默认值。
答案2
我不知道这是否是完美的方法,但它工作正常:
我假设您手动安装了 Netbeans,因此您必须创建
.desktop
如下文件:[Desktop Entry] Name=<program name maybe Netbeans 7> Exec=<then command to run program maybe /opt/netbeans/run.sh or some thing so > %U Type=Application
这是基本信息,您稍后可以添加更多详细信息,例如图标和类别。
笔记:这
%U
非常重要,如果没有它,Exec 命令后应用程序就不会出现在other applications
列表中。之后,输入文件
/usr/share/applications/
(需要 root 权限),当您输入名称时它应该会出现在 Dash 中。现在转到任意
.php
文件,右键单击它并选择properties -> open with -> show other application -> select your app
。享受编码吧!
答案3
您可以在此页面找到教程“如何在 ubuntu 上将 netbeans 设置为默认 PHP IDE”http://www.phpides.com/news/php-ide/how-to-set-netbeans-as-default-php-ide-on-ubuntu 它来自http://netbeans.org/kb/docs/php/configure-php-environment-ubuntu.html
答案4
安装 Netbeans 后打开终端并运行:
sudoedit /usr/share/applications/netbeans.desktop`
并添加
[Desktop Entry]
Name=NetBeans
Comment=Integrated Development Environment
Exec=/bin/sh "/usr/local/netbeans-8.2/bin/netbeans" %U
Icon=/usr/local/netbeans-8.2/nb/netbeans.png
Categories=Development;IDE;Java;
Terminal=false
Type=Application
Keywords=development;Java;IDE;platform;javafx;javase;
注意:不要忘记替换 Netbeans 路径