直到今天早上,PhpStorm都运行良好,但是突然它停止了工作。由于IDE根本没有加载,因此我决定重新安装它。
第一步是我使用以下命令删除了应用程序
public static void Main()
{
string[] input = new string[]
{ "Parent1:Child1", "Parent1:Child2",
"Parent1:Child3", "Parent1:Child4",
"Parent2:Child1", "Parent2:Child2",
"Parent2:Child3", "Parent2:Child4",
"Parent3:Child1","Parent3:Child2"
};
Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>();
foreach(string s1 in input)
{
string[] splitted = s1.Split(':');
List<string> temp = new List<string>();
if(!dict.ContainsKey(splitted[0]))
{
temp.Add(splitted[1]);
dict.Add(splitted[0], temp);
}
else
dict[splitted[0]].Add(splitted[1]);
}
foreach(KeyValuePair<string, List<string>> kv in dict){
Console.WriteLine(kv.Key+" : "+ string.Join(",",kv.Value));
}
}
然后我从https://confluence.jetbrains.com/display/PhpStorm/Previous+PhpStorm+Releases下载了版本$ sudo rm -R ~/Phpstorm*
,并按照本文中的说明进行操作:
https://www.jetbrains.com/help/phpstorm/install-and-set-up-product.html
但是没有创建任何启动器图标,也无法在应用程序搜索中找到PhpStorm。
在终端窗口中运行2016.1
给我
OpenJDK 64位服务器VM警告:忽略选项MaxPermSize = 350m; 支持已从8.0中删除
上面的消息对我来说是很熟悉的,因为它每次我从终端运行PhpStorm时都会出现。
但是重新安装后,会出现该消息,但是应用程序无法启动。
$ ./phpstorm.sh
/usr/share/applications/phpstorm.desktop
参考文章:
https://blog.shaharia.com/create-phpstorm-luncher-and-terminal-command-on-ubuntu