在我的Ubuntu 14.04系统中,我安装了Oracle Java 8(JDK/JRE 8u111)因为IntelliJ版本16需要JDK 1.8或更高版本(我安装了openjdk-7)。
IntelliJ安装成功但创建新项目时出错:
我收到错误“找不到Java SDK”
找不到相应版本的Java SDK。除了IntelliJ Platform Plugin SDK,您需要使用相同的Java定义JDK 版本(JDK_1_8,描述:1.8)。
如何解决此问题?
答案 0 :(得分:4)
您是否尝试进入$QQ = Read-Host -Prompt "String your searching for:"
$QL = Read-Host -Prompt "Enter the file location you wish to search:"
$FT = Get-ChildItem -Path "$QL" -recurse | where {$_.extension -eq ".txt"} | % {$_.fullname}
$FI = Get-ChildItem -Path "$QL" -recurse | where {$_.extension -eq ".ini"} | % {$_.fullname}
$FC = Get-ChildItem -Path "$QL" -recurse | where {$_.extension -eq ".config"} | % {$_.fullname}
$FTS = Get-Content -Path $FT -Filter "$QQ"
$FIS = Get-Content -Path $FI -Filter "$QQ"
$FCS = Get-Content -Path $FC -Filter "$QQ"
$FD = "C:\Support\Search-$QQ"
$FD1 = Test-Path $FD
function folder {
if ($FD1 -eq $false) {New-Item "$FD" -ItemType directory}
}
function search{
if ($FTS -ne $null){Copy-Item -Path $ft -Destination "$fd" | Write-Host "$FT" | Format-List}
if ($FIS -ne $null){Copy-Item -path $fi -Destination "$fd" | Write-Host "$FI" | Format-List}
if ($FCS -ne $null){Copy-Item -Path $fc -destination "$fd" | Write-Host "$FC" | Format-List}
}
folder
search;
然后file
,在project structure
Platform Settings
下,选择它。然后添加JDK的路径。希望这对你有用。
答案 1 :(得分:0)
从主窗口转到配置>项目默认值>项目结构。现在在项目sdk选项下选择已安装的jdk的路径。